mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-09 02:31:33 +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
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { App } from 'vue'
|
|
import select from './src/select.vue'
|
|
import optionGroup from './src/option-group.vue'
|
|
import option from './src/option.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(select.name, select)
|
|
app.component(optionGroup.name, optionGroup)
|
|
app.component(option.name, option)
|
|
}
|
|
|
|
export { select, optionGroup, option }
|