v-debounce icon indicating copy to clipboard operation
v-debounce copied to clipboard

Cannot accomplish with input dom input event

Open TunaYagci opened this issue 6 years ago • 1 comments

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).

TunaYagci avatar Apr 12 '18 14:04 TunaYagci

+1 I need this one too since my value points to Vuex

martincarles avatar Feb 26 '19 17:02 martincarles