2017-10-27 06:04:48 +00:00
|
|
|
import Radio from './Radio.vue'
|
|
|
|
import RadioGroup from './Group.vue'
|
|
|
|
|
|
|
|
Radio.Group = RadioGroup
|
2017-10-27 06:56:23 +00:00
|
|
|
Radio.Button = {
|
|
|
|
extends: Radio,
|
|
|
|
props: {
|
|
|
|
...Radio.props,
|
|
|
|
prefixCls: {
|
|
|
|
default: 'ant-radio-button',
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-10-27 06:04:48 +00:00
|
|
|
export default Radio
|
|
|
|
|