vue-numeric-input
vue-numeric-input copied to clipboard
Can enter non numeric values
I can enter ....------....---- and the control accepts it as a valid entry.
add onkeydown="return false;" oncut="return false;" onpaste="return false;"
e.g.
<vue-numeric-input :value="10" :min="1" :max="20" onkeydown="return false;" oncut="return false;" onpaste="return false;"></vue-numeric-input>
It works for me.