Home >Web Front-end >JS Tutorial >Detailed explanation of the configuration steps for using sass in vue
This time I will bring you a detailed explanation of the steps for using sass configuration in vue. What are the precautions for using sass configuration in vue. The following is a practical case, let's take a look.
1. Create a new project based on webpack template$ vue init webpack myvue2. In the current directory,
Install Dependencies
$ cd myvue $ npm install3. Install sass Dependent package
npm install --save-dev sass-loader //sass-loader依赖于node-sass npm install --save-dev node-sass4. Add configuration in the rules of webpack.base.conf.js in the build folder
{ test: /\.sass$/, loaders: ['style', 'css', 'scss'] }as shown below:
<style lang="scss">6. Then run the project
$ npm run dev7. Modify the style of APP.vue and you can see the effect
Nodejs summary of password encryption processing methods
Vue data transfer method summary
The above is the detailed content of Detailed explanation of the configuration steps for using sass in vue. For more information, please follow other related articles on the PHP Chinese website!