mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 17:49:18 +08:00
9 lines
163 B
TypeScript
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
|