用vue.js,监听敲击enter事件,完全没有反应

<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})

            }

        }


慕娘9325324
浏览 989回答 1
1回答

子衿沉夜

首先组件没有内置keyup事件,所以应该是@keyup.enter.native,但这个事件不应该是写在input组件上么?
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript