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

Vue_使用watch监听对象的三种方法

时间:2021-01-18 10:45:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:nta   computed   compute   pre   new   ted   console   container   hand   

            data: {
                datas: {
                    a: 77,
                    b: 86
                }
            }

使用deep:true深层次监听

                ‘datas‘:{
                    handler:function(newVal){
                        console.log(this.datas);
                    },
                    deep:true
                }

监听某一个具体的属性

                ‘datas.a‘:{
                    handler:function(newVal){
                        console.log(this.datas);
                    }
                }

使用computed来监听某一个具体的属性

            watch: {
                a(newVal){
                    console.log(this.datas);
                }
            },
            computed: {
                a:function(){
                    return this.datas.a;
                }
            }

Vue_使用watch监听对象的三种方法

标签:nta   computed   compute   pre   new   ted   console   container   hand   

原文地址:https://www.cnblogs.com/Syinho/p/14286781.html

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