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

vue data中的对象的属性如何使用watch监听

时间:2019-07-03 13:54:34      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:this   col   目录   中介   两种   使用   end   html   对象   

  在写项目的时候遇到了一个问题,就是需要动态监听data中一个对象的属性的变化。遇到了许多坑,在此过程中也发现了两种解决方案。

一、通过deep属性实现

  data() {
    return {
      parent:{
        child:1
      }
    };
  },

  

  watch:{
    ‘parent.child‘:{
      deep:true,
      handler: function(newV, oldV) {
        console.log(newV);
      }
    }
  }

二、通过computed做中介

  computed:{
    newChild(){
      return this.parent.child;
    }
  }

  

  watch:{
    newChild(newV,oldV){
      alert(newV)
    }
  },

  


返回目录

vue data中的对象的属性如何使用watch监听

标签:this   col   目录   中介   两种   使用   end   html   对象   

原文地址:https://www.cnblogs.com/gitByLegend/p/11125723.html

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