layui/src/module/colorPicker/index.ts

10 lines
252 B
TypeScript
Raw Normal View History

import type { App } from 'vue'
import Component from './index.vue'
import { DefineComponent } from 'vue'
Component.install = (app: App) => {
app.component(Component.name || 'LayColorPicker', Component)
}
export default Component as DefineComponent