這是一個(gè)共識(shí)性的問(wèn)題:
就是一個(gè)readonly屬性導(dǎo)致的問(wèn)題蜡歹,但是很多解決方式都無(wú)法解決惕澎,現(xiàn)給出本人已經(jīng)解決的正確方案:
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)