VUE2.0中监听对象属性的方法
程序员文章站
2022-05-17 20:05:30
...
data() {
return {
addMealList: {
name: "",
price: "0",
discount: "0",
weight: "0",
},
};
},
watch: {
addMealList: {
handler: function(newVal) {
console.log(newVal.price);
},
deep: true //深度监听
}
},
上一篇: Vue 2.6 源码剖析-组件化
下一篇: vue.js构建