mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
1.2 KiB
1.2 KiB
API
Checkbox
Property | Description | Type | Default |
---|---|---|---|
autoFocus | get focus when component mounted | boolean | false |
checked | Specifies whether the checkbox is selected. | boolean | false |
defaultChecked | Specifies the initial state: whether or not the checkbox is selected. | boolean | false |
disabled | Disable checkbox | boolean | false |
events
Events Name | Description | Arguments |
---|---|---|
change | The callback function that is triggered when the state changes. | Function(e:Event) |
Checkbox Group
Property | Description | Type | Default |
---|---|---|---|
defaultValue | Default selected value | string[] | [] |
disabled | Disable all checkboxes | boolean | false |
options | Specifies options | string[] | [] |
value | Used for setting the currently selected value. | string[] | [] |
events
Events Name | Description | Arguments |
---|---|---|
change | The callback function that is triggered when the state changes. | Function(checkedValue) |
Methods
Checkbox
Name | Description |
---|---|
blur() | remove focus |
focus() | get focus |