Vue:ElementUI的Select组件在IOS唤不起软键盘

这是一个共识性的问题:
就是一个readonly属性导致的问题,但是很多解决方式都无法解决,现给出本人已经解决的正确方案:

main.js中
import ElementUi from 'element-ui';

ElementUi.Select.computed.readonly = function () {
const isIE = !this.$isServer && !Number.isNaN(Number(document.documentMode));
return !(this.filterable || this.multiple || !isIE) && !this.visible;
};

Vue.use(ElementUI)

你可能感兴趣的:(Vue:ElementUI的Select组件在IOS唤不起软键盘)