2021-10-09 06:59:38 +00:00
|
|
|
import type { App } from 'vue'
|
2021-10-21 06:45:21 +00:00
|
|
|
import Component from './index.vue'
|
2021-10-09 06:59:38 +00:00
|
|
|
import type { IDefineComponent } from '../type/index'
|
|
|
|
|
|
|
|
Component.install = (app: App) => {
|
2021-10-11 10:09:38 +00:00
|
|
|
app.component(Component.name || 'LayTree', Component)
|
2021-10-09 06:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Component as IDefineComponent
|