element-plus
Version:
A Component Library for Vue 3
39 lines (36 loc) • 1.16 kB
JavaScript
import { defineComponent, inject, createVNode } from 'vue';
import '../../../../tokens/index.mjs';
import '../../../../hooks/index.mjs';
import { basicCellProps } from '../props/basic-cell.mjs';
import { useNamespace } from '../../../../hooks/use-namespace/index.mjs';
import { ROOT_PICKER_INJECTION_KEY } from '../../../../tokens/date-picker.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