You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
429 B

import { defineComponent, h } from 'vue';
var NodeContent = defineComponent({
name: "NodeContent",
render() {
const { node, panel } = this.$parent;
const { data, label } = node;
const { renderLabelFn } = panel;
return h("span", { class: "el-cascader-node__label" }, renderLabelFn ? renderLabelFn({ node, data }) : label);
}
});
export { NodeContent as default };
//# sourceMappingURL=node-content.mjs.map