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>
本文来自博客园,作者:秋风2016,转载请注明原文链接:https://www.cnblogs.com/lml2017/p/14863601.html