1.vue+element 键盘回车事件导致页面刷新的问题
ps:今天发现输入框输入内容后回车就会刷新页面。即:当一个 form 元素中只有一个输入框时,在该输入框中按下回车应提交该表单。如果希望阻止这一默认行为,可以在 标签上添加 @submit.native.prevent。
<el-form @submit.native.prevent> </el-form>
ps:今天发现输入框输入内容后回车就会刷新页面。即:当一个 form 元素中只有一个输入框时,在该输入框中按下回车应提交该表单。如果希望阻止这一默认行为,可以在 标签上添加 @submit.native.prevent。
<el-form @submit.native.prevent> </el-form>
转载于:https://www.cnblogs.com/chensv/p/11607510.html