2025-02-28 19:43:11 +08:00

17 lines
515 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getVNodeChildren = void 0;
function getVNodeChildren(vNode, slotName = 'default', fallback = []) {
const { children } = vNode;
if (children !== null &&
typeof children === 'object' &&
!Array.isArray(children)) {
const slot = children[slotName];
if (typeof slot === 'function') {
return slot();
}
}
return fallback;
}
exports.getVNodeChildren = getVNodeChildren;