深度监视 开启深度监视12345678watch: { "numbers":{ deep:true, handler() { console.log("a被改变了") } } } 深度监视的简写第一种123456watch: { isHot(newValue,oldValue){ console.log("isHot被修改了",newValue,oldValue) } } 第二种1234567vm.$watch("isHot",function (newValue,oldValue) { console.log("isHot被修改了吗",newValue,oldValue) })