作为行内表单组件,Switch
必须和Group
一起使用。
### disabled 设置不可更改
``` vux height=140 components=Switch,Group
<components>
Switch,Group
</components>
<template>
<group>
<switch title="不可更改" :value=true disabled></switch>
<switch title="不可更改" :value=false disabled></switch>
</group>
</template>
### on-change 事件
``` vux height=80 components=Switch,Group
<template>
<group>
<switch title="监听事件" :value=true @on-change="change"></switch>
</group>
</template>
<script>
export default {
methods: {
change: function (val) {
console.log('change', val)
}
}
}
</script>