layui/src/module/select/index.ts
2021-10-02 00:05:59 +08:00

9 lines
263 B
TypeScript

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