移动端 vue 点击软键盘的回车键(前往或搜索)进行搜索
2020-07-23 本文已影响0人
八妹sss
html
<input ref="keyword" @keyup.enter="handleSearch()" " v-model="keywordText" type="text">
js
methods: {
handleSearch () {
// 需要搜索的内容
}
}
html
<input ref="keyword" @keyup.enter="handleSearch()" " v-model="keywordText" type="text">
js
methods: {
handleSearch () {
// 需要搜索的内容
}
}