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

vue中watched属性

时间:2017-07-24 13:21:27      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:font   als   logs   class   javascrip   function   rip   this   highlight   

watched属性,vue中的观察属性,可用来监听一个值的变化

默认有两个参数,新值,旧值

   data (){
      return {
        currentCity: "深圳"
        }
    }

  

    watch:{
      ‘currentCity‘:{
        handler:function (val,oldval) {
          this.ctFontSize = val.length > 3 ? true: false;
        }
      }
    },

  当currentCity的值发生变化时就会运行上面的代码

vue中watched属性

标签:font   als   logs   class   javascrip   function   rip   this   highlight   

原文地址:http://www.cnblogs.com/jsusu/p/7228089.html

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