ant-design-vue/components/tree/index.jsx

14 lines
364 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Tree from './Tree';
import DirectoryTree from './DirectoryTree';
2018-04-13 10:58:58 +00:00
2019-01-12 03:33:27 +00:00
Tree.TreeNode.name = 'ATreeNode';
Tree.DirectoryTree = DirectoryTree;
/* istanbul ignore next */
2020-07-16 10:31:20 +00:00
Tree.install = function(app) {
app.component(Tree.name, Tree);
app.component(Tree.TreeNode.name, Tree.TreeNode);
app.component(DirectoryTree.name, DirectoryTree);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Tree;