el-popover中使⽤el-input时,el-input的autofocus失效
如图所⽰:
点击添加分组,出现输⼊分组名称的popover
需要该popover出现的同时,⾥⾯的el-input获取焦点
尝试⼀:给el-input添加autofocus属性
chrome浏览器console⾯板如下反应:
Autofocus processing was blocked because a document already has a focused element.
尝试⼆:在popover的show event中⼿动给el-input获取焦点:
模板中:
@show="showPopover"
methods中:
showPopover() {
this.$nextTick(() => {
this.$refs.input.focus()
})
onpaste不能用input }
亲测可⾏~
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论