1.先在computed里
computed:{
dataChange(){
const {method,methodData,gzjsTable2} = this; //需要监听的属性值
return{
method,methodData,gzjsTable2
}
}
}
2.在watch里监听
watch:{
dataChange:{
handler(val) {
console.log(val);
this.flagchange++ //排除第一次进页面时会出发watch的情况
// 默认值有变更的话
if (this.flagchange > 2) { // 说明监听值有变化
// 业务代码
}else{
// 业务代码
}
},
deep:true
},
}