Home  >  Article  >  Web Front-end  >  How to use sass configuration in vue project

How to use sass configuration in vue project

php中世界最好的语言
php中世界最好的语言Original
2018-04-11 14:02:462542browse

This time I will show you how to use sass configuration in the vue project. What are the precautions for using sass configuration in the vue project. The following is a practical case, let's take a look.

1. Create a new project based on webpack template

$ vue init webpack myvue

2. In the current directory, InstallDependencies

$ cd myvue
$ npm install

3. Install the dependency package of sass

npm install --save-dev sass-loader
//sass-loader依赖于node-sass
npm install --save-dev node-sass

4. Add configuration

{
 test: /\.sass$/,
 loaders: ['style', 'css', 'scss']
}

in the rules of webpack.base.conf.js in the build folder As shown below:

How to use sass configuration in vue project

5. Modify the style tag

<style></style>

in APP.vue 6. Then run the project

$ npm run dev

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps for vue to process storejs data acquisition

What are the methods to reload .vimrc without restarting Vim

The above is the detailed content of How to use sass configuration in vue project. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn