layui/src/module/button/index.ts
2021-09-29 17:22:33 +08:00

10 lines
264 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 || 'LayButton', Component)
}
export default Component as IDefineComponent