_vue怎么使用scss">
当前位置:   article > 正文

如何在vue用scss_vue怎么使用scss

vue怎么使用scss

1.安装sass 依赖包 ,在cmd界面输入:

 npm  install sass-loader --save-dev
npm install node-sass --sava-dev
  • 1
  • 2

2.在build文件夹下的webpack.base.conf.js的rules里面添加配置

{
test: / \.scss$ / ,
loaders: [ 'style' , 'css' , 'sass' ]
}
  • 1
  • 2
  • 3
  • 4

3.scss使用测试:如下测试修改字体颜色

< style lang = "scss" >
$color : red ;
div { color : $color ;}
</ style >
  • 1
  • 2
  • 3
  • 4

注意,若是报Node Sass version 7.0.1 is incompatible with ^4.0.0.错误,说明是因为sass的版本不匹配,项目由于安装的node版本不同,安装依赖后导致项目运行失败并有报错问题。

首先需要根据自己电脑安装的node版本对照出当前项目需要下载对应版本的node-sass依赖
在这里插入图片描述
去文件夹删除Node Sass文件,重新下载npm install node-sass@4.14.1 --s
最后测试一下

<style lang = "scss" scoped>
@import "../styles/all.scss";
$color:aliceblue; 
.login {
   margin: 20%;
   padding: 10%;
   background-color: $color;
   text-align: center;
}

</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述
成功运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/82615?site
推荐阅读
相关标签
  

闽ICP备14008679号