没有娃娃菜怎么吃火锅 进来随便坐
element-ui踩坑全记录
发布于: 2020-03-31 更新于: 2020-04-24 分类于: 组件库 阅读次数: 

使用element ui时遇到的一些小问题与解决方法记录。(element ui事儿好多

1. el-input中绑定@keydown.enter=”goSearch”不起作用

解决方法:@keydown.enter.native="goSearch"

2. el-input自动获取焦点

解决方法:在el-input标签上加入ref属性,然后在需要的地方直接调用。

1
2
3
4
5
6
7
<el-input
placeholder="Search"
v-model="searchKey"
class="input-with-select"
ref="input"
@keydown.enter.native="goSearch"
>

this.$refs.input.focus()

--- 本文结束 The End ---