fix: tree-select-node not registered
parent
fbcf0bff9d
commit
8dd2c5b751
|
@ -13,12 +13,9 @@ import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
||||||
import CloseOutlined from '@ant-design/icons-vue/CloseOutlined';
|
import CloseOutlined from '@ant-design/icons-vue/CloseOutlined';
|
||||||
import CloseCircleOutlined from '@ant-design/icons-vue/CloseCircleOutlined';
|
import CloseCircleOutlined from '@ant-design/icons-vue/CloseCircleOutlined';
|
||||||
import omit from 'omit.js';
|
import omit from 'omit.js';
|
||||||
const ATreeSelectNode = function ATreeSelectNode(props, ctx) {
|
|
||||||
return TreeNode(props, ctx);
|
|
||||||
};
|
|
||||||
Object.keys(TreeNode).forEach(key => (ATreeSelectNode[key] = TreeNode[key]));
|
|
||||||
const TreeSelect = {
|
const TreeSelect = {
|
||||||
TreeNode: ATreeSelectNode,
|
TreeNode,
|
||||||
SHOW_ALL,
|
SHOW_ALL,
|
||||||
SHOW_PARENT,
|
SHOW_PARENT,
|
||||||
SHOW_CHILD,
|
SHOW_CHILD,
|
||||||
|
@ -204,7 +201,7 @@ const TreeSelect = {
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
TreeSelect.install = function(app) {
|
TreeSelect.install = function(app) {
|
||||||
app.component(TreeSelect.name, TreeSelect);
|
app.component(TreeSelect.name, TreeSelect);
|
||||||
app.component(TreeSelect.TreeNode.name, TreeSelect.TreeNode);
|
app.component('ATreeSelectNode', TreeSelect.TreeNode);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default TreeSelect;
|
export default TreeSelect;
|
||||||
|
|
Loading…
Reference in New Issue