美文网首页
vue使用scss

vue使用scss

作者: 剑圣_盖小聂 | 来源:发表于2020-05-09 10:49 被阅读0次

安装依赖:

npm install sass-loader --save-dev

npm install node-sass --sava-dev

webpack.base.confi.js中的rule里添加:

{

                test: /\.scss$/,

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

    }

添加代码

就可以在页面直接用了。<style lang="scss" scoped></style>

相关文章

网友评论

      本文标题:vue使用scss

      本文链接:https://www.haomeiwen.com/subject/xwuhnhtx.html