修改vue-element-admin侧边栏图标颜色
在vue-element-admin
项目中,侧边栏图标的颜色可以通过修改Element UI的主题色来改变。首先,确保你已经安装了Element UI,并且在项目中正确引入了Element UI的样式文件。
- 找到项目中的Element UI变量文件,通常是
element-variables.scss
。 - 修改该文件中的
$--sidebar-text-color
变量,设置为你想要的颜色。
// element-variables.scss
$--sidebar-text-color: #ff0000; // 红色
- 确保你的
vue.config.js
配置正确,可以支持加载这个变量文件。
module.exports = {
css: {
loaderOptions: {
sass: {
prependData: `@import "~@/styles/element-variables.scss";`
}
}
}
};
- 重新编译项目,sidebar中的图标颜色应该已经更改。
请注意,如果你使用的是Vue CLI 3+创建的项目,并且按照vue-element-admin
的标准结构安装了Element UI,以上步骤应该可以正常工作。如果你的项目配置有所不同,可能需要根据具体情况调整上述步骤。
评论已关闭