mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
78 lines
1.7 KiB
Markdown
78 lines
1.7 KiB
Markdown
# SwitchCell
|
||
|
||
### Intro
|
||
|
||
`SwitchCell` component is an encapsulation of `Switch` and `Cell`.
|
||
|
||
### Install
|
||
|
||
``` javascript
|
||
import { SwitchCell } from 'vant';
|
||
|
||
Vue.use(SwitchCell);
|
||
```
|
||
|
||
## Usage
|
||
|
||
### Basic Usage
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-switch-cell v-model="checked" title="Title" />
|
||
</van-cell-group>
|
||
```
|
||
|
||
```javascript
|
||
export default {
|
||
data() {
|
||
return {
|
||
checked: true
|
||
}
|
||
}
|
||
}
|
||
```
|
||
|
||
### Disabled
|
||
|
||
use `disabled` property to disable the component
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-switch-cell v-model="checked" disabled title="Title" />
|
||
</van-cell-group>
|
||
```
|
||
|
||
### Loading
|
||
|
||
use `loading` property to keep component in loading state
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-switch-cell v-model="checked" loading title="Title" />
|
||
</van-cell-group>
|
||
```
|
||
|
||
## API
|
||
|
||
### Props
|
||
|
||
| Attribute | Description | Type | Default |
|
||
|------|------|------|------|
|
||
| v-model | on-off state of the switch | `any` | `false` |
|
||
| title | the left side title | `String` | `''` |
|
||
| border | whether to show cell border | `Boolean` | `true` |
|
||
| cell-size | Cell size,can be set to `large` | `String` | - |
|
||
| loading | whether switch is loading | `Boolean` | `false` |
|
||
| disabled | whether to disable switch | `Boolean` | `false` |
|
||
| size | Size of switch | `String` | `24px` |
|
||
| active-color | Background of switch color when active | `String` | `#1989fa` |
|
||
| inactive-color | Background of switch color when inactive | `String` | `#fff` |
|
||
| active-value | Value when active | `any` | `true` |
|
||
| inactive-value | Value when inactive | `any` | `false` |
|
||
|
||
### Events
|
||
|
||
| Event | Description | Arguments |
|
||
|------|------|------|
|
||
| change | triggered when the on-off state is changed | checked: switch is on or not |
|