解决element-plus自动引入后ElLoading、ElMessage、ElNotification、ElMessageBox样式丢失的问题
vue 2022-10-24 16:24:56

项目是vue3 + vite,局部引入

解决方案:

方案一: 在打包的入口文件或者依赖树中引入对应组件的样式,可以写在main.ts或者main.js里,按自己需求引入

XML/HTML Code复制内容到剪贴板
  1. // main.ts/main.js  
  2. import "element-plus/theme-chalk/el-loading.css";  
  3. import "element-plus/theme-chalk/el-message.css";  
  4. import "element-plus/theme-chalk/el-notification.css";  
  5. import "element-plus/theme-chalk/el-message-box.css";  

 

其他方案看信息来源

 

 

 

本文来自于:https://blog.csdn.net/Delete_89x/article/details/126430049

Powered by yoyo苏ICP备15045725号