vue-numeric-input icon indicating copy to clipboard operation
vue-numeric-input copied to clipboard

Can enter non numeric values

Open craiggeil opened this issue 6 years ago • 1 comments

I can enter ....------....---- and the control accepts it as a valid entry.

craiggeil avatar Apr 26 '19 02:04 craiggeil

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.

han-huang avatar Sep 11 '20 18:09 han-huang