parent
5d952cc051
commit
3357ff438c
@ -8,7 +8,10 @@ interface CompiledSlotDescriptor {
|
|||||||
|
|
||||||
export function createSlots(
|
export function createSlots(
|
||||||
slots: Record<string, Slot>,
|
slots: Record<string, Slot>,
|
||||||
dynamicSlots: (CompiledSlotDescriptor | CompiledSlotDescriptor[])[]
|
dynamicSlots: (
|
||||||
|
| CompiledSlotDescriptor
|
||||||
|
| CompiledSlotDescriptor[]
|
||||||
|
| undefined)[]
|
||||||
): Record<string, Slot> {
|
): Record<string, Slot> {
|
||||||
for (let i = 0; i < dynamicSlots.length; i++) {
|
for (let i = 0; i < dynamicSlots.length; i++) {
|
||||||
const slot = dynamicSlots[i]
|
const slot = dynamicSlots[i]
|
||||||
@ -17,7 +20,7 @@ export function createSlots(
|
|||||||
for (let j = 0; j < slot.length; j++) {
|
for (let j = 0; j < slot.length; j++) {
|
||||||
slots[slot[j].name] = slot[j].fn
|
slots[slot[j].name] = slot[j].fn
|
||||||
}
|
}
|
||||||
} else {
|
} else if (slot) {
|
||||||
// conditional single slot generated by <template v-if="..." #foo>
|
// conditional single slot generated by <template v-if="..." #foo>
|
||||||
slots[slot.name] = slot.fn
|
slots[slot.name] = slot.fn
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user