On a text input, I am trying to reverse up and down keypresses (because <input type="month">
feels upside down to me).
<input type="month" @keyup.38.prevent="" @keyup.40.prevent=""/>
How can I simulate keypress and swap 38 and 40 (preferably inline) ?
(I know it's possible with jQuery but I wonder if it's possible solely with Vue)