mt-ui-components-vue3
Version:
玛果添实UI组件库(Vue3)
9 lines • 321 B
JavaScript
import TreeSelect, { TreeSelectNode } from "ant-design-vue/es/tree-select/index";
TreeSelect.name = 'JTreeSelect';
TreeSelect.install = function (app) {
app.component(TreeSelect.name, TreeSelect);
app.component('JTreeSelectNode', TreeSelectNode);
return app;
};
export default TreeSelect;
export { TreeSelectNode };