naive-ui/demo/documentation/components/radio/zhCN/index.md

58 lines
1.4 KiB
Markdown
Raw Normal View History

2020-02-04 17:18:32 +08:00
# 单选 Radio
<!--single-column-->
我还小的时候,很喜欢听收音机,比如 FM 106.8 或者 FM 92.1。
## 演示
```demo
basic
group
button-group
2020-03-03 12:40:05 +08:00
size
2020-02-04 17:18:32 +08:00
```
## V-model
### Radio V-model
|Prop|Event|
|-|-|
|checked-value|change|
### Radio Group V-model
|Prop|Event|
|-|-|
|value|change|
## Props
### Radio Props
2020-02-07 23:40:07 +08:00
|名称|类型|默认值|说明|
2020-02-04 17:18:32 +08:00
|-|-|-|-|
2020-02-14 15:27:45 +08:00
|name|`string`|`undefined`|单选 radio 元素的 name 属性。如果没有设定会使用 `radio-group``name`|
2020-02-04 17:18:32 +08:00
|checked-value|`string \| number \| boolean`|`null`||
|value|`string \| number \| boolean`|`null`||
|disabled|`boolean`|`false`||
### Radio Button Props
2020-02-07 23:40:07 +08:00
|名称|类型|默认值|说明|
2020-02-04 17:18:32 +08:00
|-|-|-|-|
2020-02-14 15:27:45 +08:00
|name|`string`|`undefined`|单选按钮 radio 元素的 name 属性。如果没有设定会使用 `radio-group``name`|
2020-02-04 17:18:32 +08:00
|checked-value|`string \| number \| boolean`|`null`||
|value|`string \| number \| boolean`|`null`||
|disabled|`boolean`|`false`||
2020-03-03 12:40:05 +08:00
|size|`'small' \| 'medium' \| 'large'`|`'small'`||
2020-02-04 17:18:32 +08:00
### Radio Group Props
2020-02-07 23:40:07 +08:00
|名称|类型|默认值|说明|
2020-02-04 17:18:32 +08:00
|-|-|-|-|
2020-02-14 15:27:45 +08:00
|name|`string`|`null`|选项组内部 radio 元素的 name 属性|
2020-02-04 17:18:32 +08:00
|size|`'small' \| 'medium' \| 'large'`|`small`||
|value|`string \| number \| boolean`|`null`||
|disabled|`boolean`|`false`||
## Events
### Radio, Radio Button Events
2020-02-07 23:40:07 +08:00
|名称|参数|说明|
2020-02-04 17:18:32 +08:00
|-|-|-|
|change|`(checkedValue: string \| number \| boolean)`||
### Radio Group Events
2020-02-07 23:40:07 +08:00
|名称|参数|说明|
2020-02-04 17:18:32 +08:00
|-|-|-|
|change|`(checkedValue: string \| number \| boolean)`||