vue3.0 项目中 el-select ios 无法唤起软键盘解决

vue3.0 项目中 el-select ios 无法唤起软键盘解决,第1张

main.js

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
const app = createApp(App)

app.mixin({
  mounted () {
    if (typeof this.$el.className === 'string') {
      if (this.$el.className.split(' ').indexOf('el-select') !== -1) {
        this.$el.children[0].children[0].children[0].removeAttribute('readOnly')
        this.$el.children[0].children[0].children[0].onblur = function () {
          let _this = this
          setTimeout(() => {
            _this.removeAttribute('readOnly')
          }, 200)
        }
      }
    }
  }
})

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/990208.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存