Vue keyboard Enter event invalid

Article Directory

Key modifiers

vue provides a number of key modifiers, developers can capture keyboard events directly through the modifier keys

<input v-on:keyup.enter="submit">

But the encounter without force in the development process, the solution is to add .nativemodifications

<input v-on:keyup.enter.native="submit">
Published 29 original articles · won praise 8 · views 4779

Guess you like

Origin blog.csdn.net/qq_40738077/article/details/101699663