解决element-plus自动引入后ElLoading、ElMessage、ElNotification、ElMessageBox样式丢失的问题
项目是vue3 + vite,局部引入
解决方案:
方案一: 在打包的入口文件或者依赖树中引入对应组件的样式,可以写在main.ts或者main.js里,按自己需求引入
XML/HTML Code复制内容到剪贴板
- // main.ts/main.js
- import "element-plus/theme-chalk/el-loading.css";
- import "element-plus/theme-chalk/el-message.css";
- import "element-plus/theme-chalk/el-notification.css";
- import "element-plus/theme-chalk/el-message-box.css";
其他方案看信息来源
本文来自于:https://blog.csdn.net/Delete_89x/article/details/126430049
上一篇 vue3 setup 语法糖
下一篇 国内优秀npm镜像推荐及使用