You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.2 KiB

---
category: Components
subtitle: 单选框
type: Data Entry
title: Radio
---
9 years ago
单选框。
9 years ago
## 何时使用
- 用于在多个备选项中选中单个状态。
- 和 Select 的区别是,Radio 所有选项默认可见,方便用户在比较中选择,因此选项不宜过多。
9 years ago
## API
9 years ago
### Radio
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
| --- | --- | --- | --- | --- |
| checked | 指定当前是否选中 | boolean | | false |
| defaultChecked | 初始是否选中 | boolean | | false |
| value | 根据 value 进行比较,判断是否选中 | any | | 无 |
9 years ago
### RadioGroup
单选框组合,用于包裹一组 `Radio`
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
| --- | --- | --- | --- | --- |
| defaultValue | 默认选中的值 | any | 无 | 无 |
| name | RadioGroup 下所有 `input[type="radio"]``name` 属性 | string | | 无 |
| options | 以配置形式设置子元素 | string\[] \| Array<{ label: string value: string disabled?: boolean }> | 无 | 无 |
| size | 大小,只对按钮样式生效 | string | `large` `default` `small` | `default` |
| value | 用于设置当前选中的值 | any | 无 | 无 |
| onChange | 选项变化时的回调函数 | Function(e:Event) | 无 | 无 |