安装sass包
npm install node-sass@4.12.0 --save
或者yarn add node-sass@4.12.0
这里安装sass一定加版本号,否则很容易报错
使用scss
.item{
background-color: red;
border:1px dashed black;
width: 500px;
height: 200px;
}
引入scss进入组件文件
import "./splitplne.scss"
引入其他第三方sass
//这里是其他第三方的sass
@import './colors.scss';
.item{
background-color: red;
border:1px dashed black;
width: 500px;
height: 200px;
}