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.
21 lines
527 B
21 lines
527 B
![]()
2 weeks ago
|
# BaseRadioGroup - 单选
|
||
|
|
||
|
配置项参考 [el-radio-group](https://element-plus.gitee.io/zh-CN/component/radio.html "https://element-plus.gitee.io/zh-CN/component/radio.html")
|
||
|
|
||
|
```javascript
|
||
|
动态组件配置示例:
|
||
|
{
|
||
|
tag: 'BaseRadioGroup',
|
||
|
label: '性别:',
|
||
|
key: 'gender',
|
||
|
value: 1,
|
||
|
default: 1,
|
||
|
attribute: {//配置项内容
|
||
|
options:[
|
||
|
{label: '男',value: 1},
|
||
|
{label: '女',value: 2},
|
||
|
{label: '未知',value: 3},
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
```
|