element-plus/packages/button/index.ts

7 lines
140 B
TypeScript
Raw Normal View History

2020-07-21 18:18:44 +08:00
import { App } from 'vue'
import Button from './src/index.vue'
export default (app: App): void => {
2020-07-21 18:18:44 +08:00
app.component(Button.name, Button)
}