“Vue Watch Deep Property” Kod odpowiedzi

Vue Watch Deep Property

watch: {
  item: {
     handler(val){
       // do stuff
     },
     deep: true
  }
}
Krushn

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

Odpowiedzi podobne do “Vue Watch Deep Property”

Pytania podobne do “Vue Watch Deep Property”

Więcej pokrewnych odpowiedzi na “Vue Watch Deep Property” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu