Home > Article > Web Front-end > How to use sass configuration in vue project
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:
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!