mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
|
|
|
import Select from './src/select.vue'
|
|
import Option from './src/option.vue'
|
|
import OptionGroup from './src/option-group.vue'
|
|
|
|
export const ElSelect = withInstall(Select, {
|
|
Option,
|
|
OptionGroup,
|
|
})
|
|
export default ElSelect
|
|
export const ElOption = withNoopInstall(Option)
|
|
export const ElOptionGroup = withNoopInstall(OptionGroup)
|
|
|
|
export * from './src/token'
|