vue watch deep property

JavaScript
...
watch:{
    'item.someOtherProp'(newVal){
        //to work with changes in "myArray"
    },
    'item.prop'(newVal){
        //to work with changes in prop
    }
}watch: {
  item: {
     handler(val){
       // do stuff
     },
     deep: true
  }
}

Source

Also in JavaScript: