VUE项目中同时引入Antd 和ElementUI 组件样式异常
同时引入了Antd 和 ElementUI 导致部分地方组件使用Antd的$confirm
和 $message
组件时,由于elementUI中也存在同名的组件,导致页面样式异常。
采用的是全局引用,由于同名所以在
main.js
中修改antd的组件名称
给antd的组件改名
Vue.use(ElementUI);
Vue.use(Antd)
Vue.prototype.$message = Message
Vue.prototype.$confirm = MessageBox.confirm
Vue.prototype.$antdconfirm = Vue.prototype.$confirm