标签:handle turn model param file hand 写法 定义 ram
先看代码:
<el-checkbox v-model="file" :true-label="1" :false-label="0">选择</el-checkbox>
data(){
return{
file: 0
}
}
定义了一个多选框的变量,但是调接口时取到的值总有问题,于是用到了下面的写法:
computed:{ fileChange(){ return this.file } }, watch:{ fileChange:{ handler(newVal, oldVal){ this.params={ file:newVal } } } }
果然是灵!
标签:handle turn model param file hand 写法 定义 ram
原文地址:https://www.cnblogs.com/ZJTL/p/14921977.html