“Vue Watch Handler” Código de respuesta

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

set de 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

Respuestas similares a “Vue Watch Handler”

Preguntas similares a “Vue Watch Handler”

Más respuestas relacionadas con “Vue Watch Handler” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código