mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
35 lines
1.1 KiB
Vue
35 lines
1.1 KiB
Vue
import Radio from './Radio';
|
|
import PropTypes from '../_util/vue-types';
|
|
import { getOptionProps } from '../_util/props-util';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
|
|
export default {
|
|
name: 'ARadioButton',
|
|
props: {
|
|
...Radio.props,
|
|
},
|
|
inject: {
|
|
radioGroupContext: { default: undefined },
|
|
configProvider: { default: () => ConfigConsumerProps },
|
|
},
|
|
render() {
|
|
const { prefixCls: customizePrefixCls, ...otherProps } = getOptionProps(this);
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('radio-button', customizePrefixCls);
|
|
|
|
const radioProps = {
|
|
props: {
|
|
...otherProps,
|
|
prefixCls,
|
|
},
|
|
on: { ...this.$listeners },
|
|
};
|
|
if (this.radioGroupContext) {
|
|
radioProps.on.change = this.radioGroupContext.onRadioChange;
|
|
radioProps.props.checked = this.$props.value === this.radioGroupContext.stateValue;
|
|
radioProps.props.disabled = this.$props.disabled || this.radioGroupContext.disabled;
|
|
}
|
|
return <Radio {...radioProps}>{this.$slots.default}</Radio>;
|
|
},
|
|
};
|