目录
1.运行代码如下:
2.运行效果
3.switch属性
1.运行代码如下:
<template><view class="switchBox"><switch @change="switchChange" color="#F21177" :checked="form.checked" /></view>
</template>
<script>export default {data(){return{form: {checked: false,},}},methods: {//change方法switchChange(e) {console.log(e,e.detail.value,'85');},}}
</script>
<style>.switchBox{// 调整大小transform: scale(0.8,0.8)}
</style>
2.运行效果
3.switch属性