<el-button slot="append" icon="search" @click="handSearch" @keyup.enter="handSearch"></el-button>
methods: {
handSearch(){
this.items.splice(0, this.items.length);
this.$store.dispatch('findNewsPage', {key: this.input})
}
}
首先组件没有内置keyup事件,所以应该是@keyup.enter.native,但这个事件不应该是写在input组件上么?