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

Configure sass in vue

php中世界最好的语言
Release: 2018-06-15 11:22:19
Original
1238 people have browsed it

This time I will bring you the configuration of sass in vue. What are the precautions for configuring sass in vue? The following is a practical case, let’s take a look.

1. Create a new project based on the webpack template

$ vue init webpack myvue
Copy after login

2. In the current directory, install the dependencies

$ cd myvue
$ npm install
Copy after login

3. Install the sass dependency package

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

4. Add configuration in the rules of webpack.base.conf.js in the build folder

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

as shown below:

5. Modify the style tag

<style lang="scss">
Copy after login

in APP.vue 6. Then run the project

$ npm run dev
Copy after login

7. Modify the style of APP.vue and you can see the effect

8. Does the background of the running result turn gray, indicating that you have successfully configured sass

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

Recommended reading:

How to use PHP static binding in the project

Dynamic parameter passing in query within vue-router How to deal with

The above is the detailed content of Configure sass in vue. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!