https://element.eleme.cn/2.6/...
这里有个问题,设置自动获得焦点的时候,官方的例子里为什么这样写
this.$refs.saveTagInput.$refs.input.focus();
为什么调用了两次$refs我的理解是一个refs就够了啊,就像这样:
$refs
this.$refs.saveTagInput.focus();
请各位大神指点一下,非常感谢!
因为最后期望的是聚焦到 input 输入框,也就是要操作 input。
聚焦到 input 输入框
input
this.$refs.saveTagInput 是 el-input 组件实例,this.$refs.saveTagInput.$refs.input 才是真正的 input 元素。
this.$refs.saveTagInput
el-input
this.$refs.saveTagInput.$refs.input
2.1m questions
2.1m answers
60 comments
57.0k users