Home > Web Front-end > JS Tutorial > body text

How to use sass configuration in vue project

php中世界最好的语言
Release: 2018-04-11 14:02:46
Original
2596 people have browsed it

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
Copy after login

2. In the current directory, InstallDependencies

$ cd myvue
$ npm install
Copy after login

3. Install the dependency package of sass

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

4. Add configuration

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

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>
Copy after login

in APP.vue 6. Then run the project

$ npm run dev
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template