UNPKG
@itools-front/ifrontui
Version:
latest (2.8.6)
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
Vue Material Component Framework
@itools-front/ifrontui
/
lib
/
util
/
rebuildFunctionalSlots.js
14 lines
(12 loc)
•
306 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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