問題描述:
回車后,重新刷新了頁面,并且路由多了一個(gè)問號(hào)
http://localhost:8080/index?
<el-form>
<el-input
class="search"
clearable
autocomplete="off"
placeholder="搜索稿件"
prefix-icon="el-icon-search"
@keyup.enter.native="userJxfile()"
@clear="clearSearch"
v-model="searchVal"
></el-input>
</el-form>
解決:
el-from 加上 @submit.native.prevent
原因:
當(dāng)一個(gè) form 元素中只有一個(gè)輸入框時(shí)辽社,在該輸入框中按下回車應(yīng)提交該表單。如果希望阻止這一默認(rèn)行為翘鸭,可以在 標(biāo)簽上添加 @submit.native.prevent滴铅。
<el-form @submit.native.prevent>
</el-form>