vue 对data数据的深度监听(多层嵌套数据)
watch和computed配合使用watch:{startValue: { handler:function(newValue, oldValue) {console.log(newValue,oldValue)}},endValue:{handler:functio...
·
watch和computed配合使用
watch:{
startValue: {
handler:function(newValue, oldValue) {
console.log(newValue,oldValue)
}
},
endValue:{
handler:function(newValue, oldValue) {
console.log(newValue,oldValue)
}
}
},
computed: {
startValue:function(){
//要监听的数据
return this.temInput[1].btnArray[1].template.html[7].value;
},
endValue:function(){
//要监听的数据
return this.temInput[1].btnArray[1].template.html[9].value;
}
}
PS: 感兴趣的童鞋可以看一下,希望能帮助到更多的人,hahaha。
更多推荐
已为社区贡献3条内容
所有评论(0)