安装 sass-loader node-sass

npm install  sass-loader node-sass --save

使用

1、在单页面使用    

<style lang="scss">
    div{
       color:red;
       span{
            color:green;
       }
    }
</style>                    

2、引入外联样式方法:在main.js中引入你建的my-style.sacc文件

import './assets/css/my-style.scss'

 

相关文章:

  • 2022-12-23
  • 2021-06-20
  • 2021-09-19
  • 2021-08-13
  • 2021-06-25
  • 2022-03-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案