element-plus/packages/tree/index.ts

12 lines
268 B
TypeScript

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