欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ElementUI在输入框中按回车键会刷新页面报错

程序员文章站 2022-06-07 15:33:53
...

W3C 标准

When there is only one single-line text input field in a form, the user agent should accept Enter in that field as a request to submit the form.
意思是:
当一个 form 元素中只有一个输入框时,在该输入框中按下回车应提交该表单。如果希望阻止这一默认行为,可以在 <el-form> 标签上添加 @submit.native.prevent。
解决方法:
<el-form  @submit.native.prevent></el-form>
相关标签: vue