Debounce does not work for the native number buttons
-
I notice that debounce does not work with the native arrow-buttons for increasing and decreasing the value (at least in Chrome and Firefox).
If the value is changed using the keyboard the debounce works good, but when the user increases the value using the up arrow the debounce is ignored and every click results in the direct input handler.
<q-input type="number" v-model="someNumber" debounce="500" @input="expensiveServerCall" />
Is this fixable, or is this something I have to solve myself?
-
@Dennis-van-Beek file a bug issue at gh repo. workaround for the meantime https://codepen.io/metalsadman/pen/abzQarp?editable=true&editors=101