Answer the question
In order to leave comments, you need to log in
Binding form value by timeout?
Hello.
There is a form with text stored in vuex:
There is a v-model binding<textarea v-model="text"></textarea>
computed: {
text: {
get() {
return this.product.text
},
set(value) {
this.$store.dispatch(`updateProduct`, value)
}
},
}
Answer the question
In order to leave comments, you need to log in
throttle :
computed: {
text: {
get() {
// ...
},
set: _.throttle(function(text) {
// здесь вызываете мутацию
}, 2000),
},
},
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question