mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
19 lines
298 B
JavaScript
19 lines
298 B
JavaScript
import Radio from './Radio'
|
|
import Group from './Group'
|
|
|
|
const Button = {
|
|
extends: Radio,
|
|
props: {
|
|
...Radio.props,
|
|
prefixCls: {
|
|
default: 'ant-radio-button',
|
|
type: String,
|
|
},
|
|
},
|
|
}
|
|
Radio.Group = Group
|
|
Radio.Button = Button
|
|
export { Button, Group }
|
|
export default Radio
|
|
|