修改element-ui主题颜色

1.下载sass-loader,node-sass

npm install [email protected]// 默认下载目前最新版本为8.0.0.版本过高不兼容,使用会报错

npm rebuild node-sass

2.新建一个样式文件如:element-variables.scss

/* 改变主题色变量 */

$--color-primary: teal;

/* 改变 icon 字体路径变量,必需 */

$--font-path: '~element-ui/lib/theme-chalk/fonts';

@import "~element-ui/packages/theme-chalk/src/index";

3.在入口文件main.js中引入

```import Vue from 'vue'

import Element from 'element-ui'

import './element-variables.scss'

Vue.use(Element)```

你可能感兴趣的:(修改element-ui主题颜色)