2016-07-26 09:17:46 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Data Entry
2016-07-26 09:17:46 +08:00
title: Switch
2020-05-31 11:48:34 +08:00
cover: https://gw.alipayobjects.com/zos/alicdn/zNdJQMhfm/Switch.svg
2016-07-26 09:17:46 +08:00
---
Switching Selector.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-26 09:17:46 +08:00
- If you need to represent the switching between two states or on-off state.
- The difference between `Switch` and `Checkbox` is that `Switch` will trigger a state change directly when you toggle it, while `Checkbox` is generally used for state marking, which should work in conjunction with submit operation.
## API
2019-11-22 14:37:39 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-07-01 16:21:56 +08:00
| autoFocus | Whether get focus when component mounted | boolean | false |
| checked | Determine whether the Switch is checked | boolean | false |
| checkedChildren | The content to be shown when the state is checked | string \| ReactNode | - |
| defaultChecked | Whether to set the initial state | boolean | false |
2019-11-22 14:37:39 +08:00
| disabled | Disable switch | boolean | false |
2020-07-01 16:21:56 +08:00
| loading | Loading state of switch | boolean | false |
| size | The size of the Switch, options: `default` `small` | string | `default` |
| unCheckedChildren | The content to be shown when the state is unchecked | string \| ReactNode | - |
| onChange | Trigger when the checked state is changing | function(checked: boolean, event: Event) | - |
| onClick | Trigger when clicked | function(checked: boolean, event: Event) | - |
| className | The additional class to Switch | string | - |
2017-12-01 19:28:41 +08:00
## Methods
2019-11-22 14:37:39 +08:00
| Name | Description |
| ------- | ------------ |
2020-07-01 16:21:56 +08:00
| blur() | Remove focus |
| focus() | Get focus |