当前位置:   article > 正文

vue3 + element plus 使用el-button焦点问题 失焦操作_vue3中如何设置一个元素手动失焦

vue3中如何设置一个元素手动失焦

问题:
点击按钮后会有激活的样式,除非点击其他地方才能取消掉,
影响:
当我点击按钮,弹出了个提示弹窗,但是,当我弹窗关闭的时候,按钮还是处于激活的状态。(体验效果差)

更改思路:
通过ref 强制失焦
代码:

<div class="monL-but monL">
	<el-button plain type="primary" ref='resetBtn' @click="onReset">重置</el-button>
</div>

<script lang="ts">
export default defineComponent({
  setup () {
     const resetBtn = ref() // 通过ref去获取dom
     const onReset = async () => {
      ElMessageBox.confirm(
        '是否确定此操作?', '提示',
        {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }
      ).then(async () => {
          ElMessage({
            type: 'success',
            message: '重置成功!'
          })
      }).catch(() => {
        // console.log('取消重置')
        resetBtn.value.buttonRef.blur()
        // 获取 button 的dom。
        // 注意 : blur()是在dom上才有,resetBtn.value获取的是组件里的属性,
        // 得找到哪个属性是dom, buttonRef是dom,所以blur()能执行
      })
    }
  }
})
 return {
 	onReset,
    resetBtn
 }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/106278
推荐阅读
相关标签
  

闽ICP备14008679号