mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
57 lines
902 B
Markdown
57 lines
902 B
Markdown
# Checkbox
|
|
Yo, yo, check it out.
|
|
## Demos
|
|
```demo
|
|
basic
|
|
group
|
|
grid
|
|
indeterminate
|
|
controlled
|
|
event
|
|
```
|
|
## V-model
|
|
### Checkbox V-model
|
|
|Prop|Event|
|
|
|-|-|
|
|
|change|checked|
|
|
|
|
### Checkbox Group V-model
|
|
|Prop|Event|
|
|
|-|-|
|
|
|change|value|
|
|
|
|
## Props
|
|
### Checkbox Props
|
|
|Name|Type|Default|Description|
|
|
|-|-|-|-|
|
|
|value|`string \| number`|`null`||
|
|
|checked|`boolean`|`false`||
|
|
|disabled|`boolean`|`false`||
|
|
|
|
### Checkbox Group Props
|
|
|Name|Type|Default|Description|
|
|
|-|-|-|-|
|
|
|value|`Array<string \| number>`|`null`||
|
|
|disabled|`boolean`|`false`||
|
|
|
|
## Slots
|
|
### Checkbox Slots
|
|
|Name|Parameters|Description|
|
|
|-|-|-|
|
|
|default|`()`||
|
|
|
|
### Checkbox Group Slots
|
|
|Name|Parameters|Description|
|
|
|-|-|-|
|
|
|default|`()`||
|
|
|
|
## Events
|
|
### Checkbox Events
|
|
|Name|Parameters|Description|
|
|
|-|-|-|
|
|
|change|`(checked: boolean)`||
|
|
|
|
### Checkbox Group Events
|
|
|Name|Paramaters|Description|
|
|
|-|-|-|
|
|
|change|`(value: string \| number)`|| |