14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
|
export default function rebuildFunctionalSlots(slots, h) {
|
||
|
const children = [];
|
||
|
|
||
|
for (const slot in slots) {
|
||
|
if (slots.hasOwnProperty(slot)) {
|
||
|
children.push(h('template', {
|
||
|
slot
|
||
|
}, slots[slot]));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return children;
|
||
|
}
|
||
|
//# sourceMappingURL=rebuildFunctionalSlots.js.map
|