ant-design-vue/components/switch/index.en-US.md

25 lines
1.0 KiB
Markdown
Raw Normal View History

2018-02-27 04:14:29 +00:00
## API
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| autoFocus | get focus when component mounted | boolean | false |
2018-03-05 11:06:44 +00:00
| checked(v-model) | determine whether the `Switch` is checked | boolean | false |
2018-02-27 04:14:29 +00:00
| checkedChildren | content to be shown when the state is checked | string\|slot | |
| defaultChecked | to set the initial state | boolean | false |
| disabled | Disable switch | boolean | false |
| loading | loading state of switch | boolean | false |
| size | the size of the `Switch`, options: `default` `small` | string | default |
| unCheckedChildren | content to be shown when the state is unchecked | string\|slot | |
2018-02-27 10:00:11 +00:00
2018-03-22 14:17:35 +00:00
### Events
2018-02-27 10:00:11 +00:00
| Events Name | Description | Arguments |
| --- | --- | --- |
2019-03-18 12:35:24 +00:00
| change | trigger when the checked state is changing | Function(checked: boolean, event: Event) | |
| click | trigger when clicked | Function(checked: boolean, event: Event) | |
2018-02-27 04:14:29 +00:00
## Methods
| Name | Description |
| ---- | ----------- |
| blur() | remove focus |
| focus() | get focus |