mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* 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 }
|