Vue实现input、el-input监听键盘回车事件

input

<input @keyup.enter="submitFn">

el-input

<el-input @keyup.enter.native="submitFn" />
无论刮风还是下雨,太阳照常升起。