“Vue Watch Handler” Kod odpowiedzi

Vue Watch Handler

data: function ()  {
    return {
       questions: []
    }
},
    
watch: {
   questions: {
       handler: function(val, oldVal) {
           this.foo(); // call it in the context of your component object
       },
       deep: true
    }
},      
    
methods: {
    foo() {
        console.log("foo called");
    }
}
Suman Majhi

Zestaw Vuejs

Vue.set(vm.someObject, 'propertyName', value)
// Or using alias
this.$set(this.someObject, 'propertyName', value)
// For an array, simply repalce propertyName with the index
this.$set(this.someArray, indexOfItem, value)
// Or assign new props to an object
this.someObject = Object.assign({}, this.someObject, { a: 1, b: 2 })
SmokeFrog

Odpowiedzi podobne do “Vue Watch Handler”

Pytania podobne do “Vue Watch Handler”

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

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

Przeglądaj inne języki kodu