Vue CLI使用scss

在 Vue CLI 脚手架中使用 scss

今天学习 vue 当中遇到了如何配置 scss 的问题经过查证,写出记录。

第一步
npm install sass-loader node-sass
或者
yarn add sass-loader node-sass

如果 node-sass 在 Windows 中安装失败(需要 Python 和 C++构建工具),大家可以使用 cnpm 单独安装 node-sass

第二步
在 vue 文件中

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<style lang="scss" > #app {
@import url("./assets/aaa.scss"); // 引入单独的scss文件

font-family: "Avenir", Helvetica, Arial, sans-serif;

-webkit-font-smoothing: antialiased;

-moz-osx-font-smoothing: grayscale;

text-align: center;

color: #2c3e50;

margin-top: 60px;
}

使用 sass 同理