| 12345678910111213141516171819202122 |
- 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;
|