layui/src/module/button/index.ts

10 lines
268 B
TypeScript
Raw Normal View History

2021-09-26 22:09:33 +00:00
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