美文网首页
Vue+elementUI监听键盘回车事件,首次执行时页面刷新问

Vue+elementUI监听键盘回车事件,首次执行时页面刷新问

作者: IT飞牛 | 来源:发表于2020-02-29 15:59 被阅读0次

在使用el-input组件时,为了操作方便,监听了@keyup.enter,直接enter键提交,但是首次提交时会出现页面刷新。

原因:
input表单外部有form,默认会执行form的submit事件,对页面进行刷新。

解决方案:

<el-form
                label-width="auto"
                :inline="true"
                v-if="!!scope.row.isRename"
                @submit.native.prevent//-----------------------------在此处禁用默认submit
              >
                <el-form-item style="margin-top:1px;">
                  <input
                    size="mini"
                    :value="scope.row.filename"
                    :ref="`renameInput-${scope.row.id}`"
                    @click.stop
                    class="rename"
                    @keyup.enter="renameOk(scope.row)"//-----------------------------监听enter键
                  />
                </el-form-item>
                <el-form-item>
                  <el-button size="mini" icon="el-icon-check" @click.stop="renameOk(scope.row)"></el-button>
                  <el-button size="mini" icon="el-icon-close" @click.stop="renameCancel(scope.row)"></el-button>
                </el-form-item>
              </el-form>

相关文章

网友评论

      本文标题:Vue+elementUI监听键盘回车事件,首次执行时页面刷新问

      本文链接:https://www.haomeiwen.com/subject/blaphhtx.html