- 如果使用了ele
<el-input
style="width:300px;"
placeholder="請輸入查詢內容"
v-model="keyword"
class="input-with-select"
@keyup.enter.native="queryAdminRole"
>
</el-input>
- 如果是原生
<input v-on:keyup.13="submit">
也可以這樣寫
<input @keyup.enter="submit">