antd-tiny-vue/components/button/index.ts

9 lines
163 B
TypeScript
Raw Normal View History

2023-03-10 22:11:33 +08:00
import type { App } from 'vue'
import Button from './button'
Button.install = function (app: App) {
app.component(Button.name, Button)
}
export default Button