vuejs assistem sub propriedade
watch:{
'object.subprob': function (newVal, oldVal){
//to watch changes in subprob
},
},
MatrixZA
watch:{
'object.subprob': function (newVal, oldVal){
//to watch changes in subprob
},
},
...
watch:{
'item.someOtherProp'(newVal){
//to work with changes in "myArray"
},
'item.prop'(newVal){
//to work with changes in prop
}
}