<el-input
type="search"
placeholder="要查找的关键词"
v-model.trim="keyword"
class="search_input"
@keydown.enter.native="toSearchpage()"
/>
加上.native即可覆盖原有封装的keyup事件
<el-input
type="search"
placeholder="要查找的关键词"
v-model.trim="keyword"
class="search_input"
@keydown.enter.native="toSearchpage()"
/>
加上.native即可覆盖原有封装的keyup事件