mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +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
18 lines
512 B
TypeScript
18 lines
512 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
|
|
import Radio from './src/radio.vue'
|
|
import RadioButton from './src/radio-button.vue'
|
|
import RadioGroup from './src/radio-group.vue'
|
|
|
|
export const ElRadio = withInstall(Radio, {
|
|
RadioButton,
|
|
RadioGroup,
|
|
})
|
|
export default ElRadio
|
|
export const ElRadioGroup = withNoopInstall(RadioGroup)
|
|
export const ElRadioButton = withNoopInstall(RadioButton)
|
|
|
|
export * from './src/radio'
|
|
export * from './src/radio-group'
|
|
export * from './src/radio-button'
|