2022-02-09 16:59:08 +08:00
|
|
|
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
2021-09-24 19:11:56 +08:00
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
import Radio from './src/radio.vue'
|
|
|
|
import RadioButton from './src/radio-button.vue'
|
|
|
|
import RadioGroup from './src/radio-group.vue'
|
|
|
|
|
2021-09-24 19:11:56 +08:00
|
|
|
export const ElRadio = withInstall(Radio, {
|
|
|
|
RadioButton,
|
|
|
|
RadioGroup,
|
|
|
|
})
|
|
|
|
export default ElRadio
|
|
|
|
export const ElRadioGroup = withNoopInstall(RadioGroup)
|
|
|
|
export const ElRadioButton = withNoopInstall(RadioButton)
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2021-11-06 01:45:40 +08:00
|
|
|
export * from './src/radio'
|
|
|
|
export * from './src/radio-group'
|
|
|
|
export * from './src/radio-button'
|