阻止form表单回车提交刷新页面

备忘记录: 

些许物理手段:

不要让表单中只有一个文本框(增加一个隐藏的文本框就行)

form 上添加 :οnsubmit="return false;"

在 el-form 上加上 @submit.native.prevent 这个则会阻止表单回车提交

input上加上 @submit.native.prevent @keyup.enter.native="search()"  

or

 @keyup.enter.prevent="search()"  

这个时候使用按键修饰符需要加上.native(一般用于form表单提交)

    prevent 是用来阻止默认的

你可能感兴趣的:(前端,前端)