## Checkbox
| 属性 | 说明 | 类型 | 默认值 |
| :--- | :--- | :--- | :--- |
| disabled | 是否可用 | `bool` | `false` |
| checked | 是否选中 | `bool` | `false` |
| className | 选择器自定义className | `string` |  |
| onChange | 点击处理函数 | `func` | `undefined` |
| style | 样式 | `object` | `undefined` |

## CheckGoup
| 属性 | 说明 | 类型 | 默认值 |
| :--- | :--- | :--- | :--- |
| options | 要展示的check列表数据 | `[object]` | `[]` |
| value | 当前值选中的元素id列表 | `[string, number, symbol]` | `[]` |
| idKey | 作为id的属性名称 | `string` | `'id'` |
| labelKey | 作为label的属性名称 | `string` | `'label'` |
| inline | 是否将多个checkbox展示在一行内 | `bool` | `'true'` |
| className | 选择器自定义className | `string` |  |
| onChange | 值改变时触发函数 | `func` | `空函数` |
