mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { App } from 'vue'
|
|
import Radio from './src/radio.vue'
|
|
import RadioGroup from './src/radio-group.vue'
|
|
import RadioButton from './src/radio-button.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Radio.name, Radio)
|
|
app.component(RadioGroup.name, RadioGroup)
|
|
app.component(RadioButton.name, RadioButton)
|
|
}
|
|
|
|
export { Radio, RadioGroup, RadioButton }
|