mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-05 05:18:34 +08:00
19 lines
344 B
Markdown
19 lines
344 B
Markdown
### Checkbox
|
|
|
|
勾选框
|
|
|
|
- `type` 请设置成 `checkbox`
|
|
- `option` 选项说明
|
|
- `trueValue` 默认 `true`
|
|
- `falseValue` 默认 `false`
|
|
- 更多配置请参考 [FormItem](./FormItem.md)
|
|
|
|
```schema:height="200" scope="form-item"
|
|
{
|
|
"name": "checkbox",
|
|
"type": "checkbox",
|
|
"label": "Checkbox",
|
|
"option": "选项说明"
|
|
}
|
|
```
|