ant-design-vue/components/vc-tree-select/index.tsx

9 lines
327 B
Vue
Raw Normal View History

2021-08-22 02:47:41 +00:00
import TreeSelect from './TreeSelect';
2021-08-20 13:39:59 +00:00
import TreeNode from './TreeNode';
import { SHOW_ALL, SHOW_CHILD, SHOW_PARENT } from './utils/strategyUtil';
2021-08-22 02:47:41 +00:00
import { TreeSelectProps, treeSelectProps } from './props';
2021-08-20 13:39:59 +00:00
2021-08-22 02:47:41 +00:00
export { TreeNode, SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelectProps, treeSelectProps };
2021-08-20 13:39:59 +00:00
export default TreeSelect;