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