bug:在饿了么框架中按需引入,只要用到MessageBox.confirm()这个弹窗组件,在页面刷新时就会自动弹出这个东西。
正常情况下,应该是点击按钮才触发弹窗,而不是现在这样页面刷新的时候就弹出来
解决方案:
因为我们是按需加载引用的element-ui :
换一种引用方式即可解决
import {
MessageBox,
} from "element-ui";
Vue.component(MessageBox.name, MessageBox);
bug:在饿了么框架中按需引入,只要用到MessageBox.confirm()这个弹窗组件,在页面刷新时就会自动弹出这个东西。
解决方案:
因为我们是按需加载引用的element-ui :
换一种引用方式即可解决
import {
MessageBox,
} from "element-ui";
Vue.component(MessageBox.name, MessageBox);
本文标题:解决vue-cli中在使用element-UI的MessageB
本文链接:https://www.haomeiwen.com/subject/wbsdlrtx.html
网友评论