mirror of
https://github.com/element-plus/element-plus.git
synced 2025-02-23 11:59:34 +08:00
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import { App } from 'vue'
|
|
import OptionGroup from '../select/src/option-group.vue'
|
|
|
|
OptionGroup.install = (app: App): void => {
|
|
app.component(OptionGroup.name, OptionGroup)
|
|
}
|
|
|
|
export default OptionGroup
|