<textarea v-model="text"></textarea>
computed: {
text: {
get() {
return this.product.text
},
set(value) {
this.$store.dispatch(`updateProduct`, value)
}
},
}
computed: {
text: {
get() {
// ...
},
set: _.throttle(function(text) {
// здесь вызываете мутацию
}, 2000),
},
},