mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 11:38:36 +08:00
27 lines
759 B
Vue
27 lines
759 B
Vue
import Radio from './Radio'
|
|
import { getOptionProps } from '../_util/props-util'
|
|
|
|
export default {
|
|
name: 'ARadioButton',
|
|
props: {
|
|
...Radio.props,
|
|
prefixCls: {
|
|
default: 'ant-radio-button',
|
|
type: String,
|
|
},
|
|
},
|
|
inject: {
|
|
radioGroupContext: { default: undefined },
|
|
},
|
|
render () {
|
|
const props = getOptionProps(this)
|
|
const radioProps = { props, on: { ...this.$listeners }}
|
|
if (this.radioGroupContext) {
|
|
radioProps.on.change = this.radioGroupContext.onRadioChange
|
|
radioProps.props.checked = props.value === this.radioGroupContext.stateValue
|
|
radioProps.props.disabled = props.disabled || this.radioGroupContext.disabled
|
|
}
|
|
return <Radio {...radioProps}>{this.$slots.default}</Radio>
|
|
},
|
|
}
|