Skip to content

Radio 单选框

单选组件,支持 RadioGroup。

基础用法

vue
<ARadioGroup v-model:value="radioVal">
  <ARadio value="m" label="男" />
  <ARadio value="f" label="女" />
</ARadioGroup>

API

属性类型默认值说明
checked / valuebooleanundefined选中状态
valuestring | numberRadioGroup 中的值
labelstring标签文本
disabledbooleanfalse禁用

Released under the MIT License.