vue-cli sass安装

vue

一、安装对应依赖node模块:

npm install node-sass --save-dev

npm install sass-loader --save-dev

二、打开webpack.base.config.js在loaders里面加上

rules: [

{

test: /\.vue$/,

loader: 'vue-loader',

options: vueLoaderConfig

},

{

test: /\.js$/,

loader: 'babel-loader',

include: [resolve('src'), resolve('test')]

},

{

test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,

loader: 'url-loader',

query: {

limit: 10000,

name: utils.assetsPath('img/[name].[hash:7].[ext]')

}

},

{

test: /\.scss$/,

loaders: ["style", "css", "sass"]

},

{

test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,

loader: 'url-loader',

query: {

limit: 10000,

name: utils.assetsPath('fonts/[name].[hash:7].[ext]')

}

}

]

}

三、在.vue文件中

<style lang="scss" type="text/css">

@import url('common/css/reset.css');

$vw_base: 375;

@function vw($px) {

@return ($px / 375) * 100vw;

}

.main {

display: flex;

width: vw(50);

}

</style>

 原文: https://www.cnblogs.com/rainheader/p/6505366.html

以上是 vue-cli sass安装 的全部内容, 来源链接: utcz.com/z/380763.html

回到顶部