antd-tiny-vue/components/button/index.ts
2023-03-10 22:11:33 +08:00

9 lines
163 B
TypeScript

import type { App } from 'vue'
import Button from './button'
Button.install = function (app: App) {
app.component(Button.name, Button)
}
export default Button