mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
import { App } from 'vue'
|
|
import Tree from './src/tree.vue'
|
|
export default (app: App): void => {
|
|
app.component(Tree.name, Tree)
|
|
}
|