import Tree from './src/tree.vue' import type { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils' Tree.install = (app: App): void => { app.component(Tree.name, Tree) } const _Tree = Tree as SFCWithInstall export default _Tree export const ElTree = _Tree