9 lines
327 B
Vue
9 lines
327 B
Vue
import TreeSelect from './TreeSelect';
|
|
import TreeNode from './TreeNode';
|
|
import { SHOW_ALL, SHOW_CHILD, SHOW_PARENT } from './utils/strategyUtil';
|
|
import { TreeSelectProps, treeSelectProps } from './props';
|
|
|
|
export { TreeNode, SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelectProps, treeSelectProps };
|
|
|
|
export default TreeSelect;
|