el-form表单中的el-input回车刷新页面,@keyup.enter.native不生效问题解决

解决方法:

在el-form上添加@submit.native.prevent

<el-form @submit.native.prevent>
  <el-input v-mode="name"></el-input>
</el-form>
原文地址:https://www.cnblogs.com/lml2017/p/14863601.html