v-debounce
v-debounce copied to clipboard
Cannot accomplish with input dom input event
Try this one, which doesn't work:
<input @input="method()" v-debounce="400" :value="someValue">
This one works:
<input @changed="method()" v-debounce="400" :value="someValue">
I can't use v-model since I'm using the value as prop.
Note: I need @input
event since @changed
is broken (invoked on many cases).
+1 I need this one too since my value points to Vuex