import { defineComponent, inject, createVNode } from 'vue';
|
import '../../../../hooks/index.mjs';
|
import { ROOT_PICKER_INJECTION_KEY } from '../constants.mjs';
|
import { basicCellProps } from '../props/basic-cell.mjs';
|
import { useNamespace } from '../../../../hooks/use-namespace/index.mjs';
|
|
var ElDatePickerCell = defineComponent({
|
name: "ElDatePickerCell",
|
props: basicCellProps,
|
setup(props) {
|
const ns = useNamespace("date-table-cell");
|
const {
|
slots
|
} = inject(ROOT_PICKER_INJECTION_KEY);
|
return () => {
|
const {
|
cell
|
} = props;
|
if (slots.default) {
|
const list = slots.default(cell).filter((item) => {
|
return item.patchFlag !== -2 && item.type.toString() !== "Symbol(Comment)";
|
});
|
if (list.length) {
|
return list;
|
}
|
}
|
return createVNode("div", {
|
"class": ns.b()
|
}, [createVNode("span", {
|
"class": ns.e("text")
|
}, [cell == null ? void 0 : cell.text])]);
|
};
|
}
|
});
|
|
export { ElDatePickerCell as default };
|
//# sourceMappingURL=basic-cell-render.mjs.map
|