Views: 1853
Last Modified: 27.04.2022

If you have previously employed tracking by key codes, you'll have to change this practice, because it's no longer supported.

Before:

<input v-on:keyup.13="submit" />
<input v-on:keyup.34="nextPage" />
<input v-on:keyup.81="quit" />

Now:

<input v-on:keyup.enter="submit" />
<input v-on:keyup.page-down="nextPage">
<input v-on:keypress.q="quit">

Note: In addition to this change, the construction v-on.native modifier was deleted.





Courses developed by Bitrix24