当前位置:主页 > 网页前端 > vue >

vue1.0和vue2.0的watch监听事件写法详解

时间:2021-11-27 13:46:11 | 栏目:vue | 点击:

如下所示:

watch: {
 aaa: {
  handler: function (newVal,oldVal) {
   console.log('当前的值:'+ newVal);
   console.log('旧的值' + oldVal);
  },
  deep: true  //深度监听
 }
}

您可能感兴趣的文章:

相关文章