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.
31 lines
1.1 KiB
31 lines
1.1 KiB
7 years ago
|
## 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 |
|
||
|
| onChange | 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\[] | \[] |
|
||
|
| onChange | The callback function that is triggered when the state changes. | Function(checkedValue) | - |
|
||
|
|
||
|
## Methods
|
||
|
|
||
|
### Checkbox
|
||
|
|
||
|
| Name | Description |
|
||
|
| ---- | ----------- |
|
||
|
| blur() | remove focus |
|
||
|
| focus() | get focus |
|