The change of a property of the watch array in vue, and then how to assign the changed array to the currently operating array for update.

watch: {

  person: {
    handler: function (data) {
             doSomething();
             //person.person
    },

    deep: true
  }
Mar.28,2021
Menu