首页 > 其他 > 详细

解决element组件input框的autofocus只触发一次

时间:2019-11-03 11:57:36      阅读:504      评论:0      收藏:0      [点我收藏+]
<i class="icon iconfont icon-edit-p" v-if="!editAtlasBool" @click="showInput"></i>
<el-input v-if="editAtlasBool" :placeholder="newAtlasName" ref="atlas-name-input" v-model="atlasName"  maxlength="20" @blur="atlasBlur(atlasName)"></el-input>
<i class="icon iconfont icon-edit-p" v-if="!editAtlasBool" @click="showInput"></i>

现在的需求是当点击icon图标的时候input框 与span标签切换显示,默认input框显示的时候需要自动获取焦点,首次点击icon是可以的 后面再次切换就不行,原先是在el-input标签上面添加了autofocus属性

可以使用原生的focus事件自动触发

        showInput(){
                this.editAtlasBool = true
                this.$nextTick(()=>{ //自动获取焦点 element组件autofocus失效
                    this.$refs[‘atlas-name-input‘].$refs.input.focus()
                })
            },
                        

  

解决element组件input框的autofocus只触发一次

原文:https://www.cnblogs.com/tw6668/p/11785435.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!