码迷,mamicode.com
首页 > 其他好文 > 详细

vue computed+watch的一种用法

时间:2021-06-23 17:07:55      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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
      }
    }
  }
}

果然是灵!

vue computed+watch的一种用法

标签:handle   turn   model   param   file   hand   写法   定义   ram   

原文地址:https://www.cnblogs.com/ZJTL/p/14921977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!