UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

22 lines 500 B
import { cloneVNode } from 'vue'; import { flattenChildren } from '../_util/props-util'; const Item = (_ref, _ref2) => { let { setRef } = _ref; let { slots } = _ref2; var _a; const children = flattenChildren((_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)); return children && children.length ? cloneVNode(children[0], { ref: setRef }) : children; }; Item.props = { setRef: { type: Function, default: () => {} } }; export default Item;