vue element-ui 绑定@keydown事件无效
<el-inputtype="search"placeholder="要查找的关键词"v-model.trim="keyword"class="search_input"@keydown.enter.native="toSearchpage()"/>加上.native即可覆盖原有封装的keyup事件...
·
<el-input
type="search"
placeholder="要查找的关键词"
v-model.trim="keyword"
class="search_input"
@keydown.enter.native="toSearchpage()"
/>
加上.native即可覆盖原有封装的keyup事件
更多推荐
已为社区贡献3条内容
所有评论(0)