11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
|
|
import TreeSelect from './src/tree-select.mjs';
|
||
|
|
|
||
|
|
TreeSelect.install = (app) => {
|
||
|
|
app.component(TreeSelect.name, TreeSelect);
|
||
|
|
};
|
||
|
|
const _TreeSelect = TreeSelect;
|
||
|
|
const ElTreeSelect = _TreeSelect;
|
||
|
|
|
||
|
|
export { ElTreeSelect, _TreeSelect as default };
|
||
|
|
//# sourceMappingURL=index.mjs.map
|