mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
16 lines
427 B
TypeScript
16 lines
427 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
|
|
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'
|