mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-15 02:40:46 +08:00
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import { App } from 'vue'
|
|
import Button from './src/index.vue'
|
|
export default (app: App) => {
|
|
app.component(Button.name, Button)
|
|
}
|