标签:常用 tps 变化 href 一个 code 设置 odi 如何
1 watch:{ 2 obj:{ //监听的对象 3 deep:true, //深度监听设置为 true 4 handler:function(newV,oldV){ 5 console.log(‘watch中:‘,newV) 6 } 7 } 8 }
data () { return { obj:{ name:‘夜空中最亮的星星‘, age:18 } } }, watch:{ ‘obj.name‘:{ deep:true, handler:function(newV,oldV){ console.log(‘watch中:‘,newV) } } }
1 data () { 2 return { 3 obj:{ 4 name:‘夜空中最亮的星星‘, 5 age:18 6 } 7 } 8 }, 9 computed:{ 10 name(){ 11 return this.obj.name; 12 } 13 }, 14 watch:{ 15 name(newV){ 16 console.log(‘watch中name为:‘,newV) 17 } 18 }
标签:常用 tps 变化 href 一个 code 设置 odi 如何
原文地址:https://www.cnblogs.com/yuzhongyu/p/10444043.html