1、在style文件夹里新建一个scss文件,写入:
/* 改变主题色变量 */
$--color-primary: #df3736; //想换的颜色
/* 改变 icon 字体路径变量,必需 */
$--font-path: '~element-ui/lib/theme-chalk/fonts';
@import "~element-ui/packages/theme-chalk/src/index";
2.在main.js里引入这个文件;
import ElementUI from 'element-ui'
// import 'element-ui/lib/theme-chalk/index.css'
import './styles/themeColor.scss'
okk