vue+elementUI 键盘回车事件导致页面刷新的问题

在控件上已经添加了:

@keyup.enter.native="searchProjects()" 监听,但是回车确是reload 页面,需要在表单上form上添加:

 

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 元素中只有一个输入框时,在该输入框中按下回车应提交该表单。如果希望阻止这一默认行为,可以在 标签上添加 @submit.native.prevent。

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