//模式一

 watch: {
          
            'obj.property': function (val) {
                 console.log('11');
            }

        },

//模式二


  'obj.property': {
        handler(newName, oldName) {
          console.log('11');
        },
    }

//监听整个数组

 obj: {
    handler(newName, oldName) {
      console.log(11');
    },

    deep: true
  }

 

Logo

前往低代码交流专区

更多推荐