mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
e8c162ea72
* fix(build): fix some export & import path * fix(build): build utils * fix: fix error import * fix(build): fix import error * fix(build): remove useless dependent * fix(build): fix build command error
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { App } from 'vue'
|
|
import Button from './src/button.vue'
|
|
import ButtonGroup from './src/button-group.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Button.name, Button)
|
|
app.component(ButtonGroup.name, ButtonGroup)
|
|
}
|
|
|
|
export { Button, ButtonGroup }
|