将对象通过
JSON.stringify
方法处理,这时候只要监听字符串变化就行了。
data(){
return {
obj:{
a:{
b:{
c:{
d:['xx']
}
}
}
}
}
}
computed: {
watchObj() {
return JSON.stringify(this.obj);
},
},
watch: {
watchObj(val) {
console.log(val)
},
},