浏览 160
分享
Switch
开关。
引入
import { Switch } from 'we-vue'
Vue.use(Switch)
例子
默认
<w-switch title="开关1" v-model="switchValue1"></w-switch>
禁用
<w-switch title="开关2(禁用)" disabled v-model="switchValue2"></w-switch>
非列表项中的开关(即独立开关)
<w-switch v-model="switchValue3" :is-in-cell="false"></w-switch>
API
参数 | 类型 | 说明 | 可选值 | 默认值 |
---|---|---|---|---|
title | String | 标题 | ||
is-in-cell | Boolean | 是否为列表项中的开关 | true | |
disabled | Boolean | 是否禁用 | false |
评论列表