Element 輸入框input響應回車事件

晴空排雲發表於2020-11-22

為對應的input輸入框新增@keyup.enter.native事件

<el-input placeholder="請輸入內容" v-model="searchInput" @keyup.enter.native="search"></el-input>

...
method:{
	search(){
		console.log(`searchInput 輸入框點選了Enter鍵,當前輸入內容:${this.searchInput}`);
	}
}

相關文章