Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rebuildFunctionalSlots.js 314B

12345678910
  1. export default function rebuildFunctionalSlots(slots, h) {
  2. var children = [];
  3. for (var slot in slots) {
  4. if (slots.hasOwnProperty(slot)) {
  5. children.push(h('template', { slot: slot }, slots[slot]));
  6. }
  7. }
  8. return children;
  9. }
  10. //# sourceMappingURL=rebuildFunctionalSlots.js.map