“Vuejs Watch Sub Property” Código de respuesta

Vuejs Watch Sub Property

 watch:{
     'object.subprob': function (newVal, oldVal){
         //to watch changes in subprob
     },
 },
MatrixZA

Vue Watch Child Property

...
watch:{
    'item.someOtherProp'(newVal){
        //to work with changes in "myArray"
    },
    'item.prop'(newVal){
        //to work with changes in prop
    }
}
Panicky Panther

Respuestas similares a “Vuejs Watch Sub Property”

Preguntas similares a “Vuejs Watch Sub Property”

Más respuestas relacionadas con “Vuejs Watch Sub Property” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código