You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
257 B
10 lines
257 B
// export this package's api
|
|
// base 2.9.3
|
|
import Vue from 'vue';
|
|
import TreeSelect from './src';
|
|
import ref from 'vue-ref';
|
|
|
|
Vue.use(ref, { name: 'ant-ref' });
|
|
export default TreeSelect;
|
|
|
|
export { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from './src';
|