欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 //深度监听
    }
  },