// 监听对象 data(){ return { a:{ b:10, c:20 } } }, watch:{ a:{ handler(a,b,c){ console.log(a) console.log(b) }, deep:true // 必须加这个属性 }