@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
22 lines • 500 B
JavaScript
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;