Answers for "vue js sass"

7

vue scss

npm install sass-loader node-sass style-loader --save-dev
Posted by: Guest on April-12-2020
3

setup scss in vue

npm i node-sass sass-loader

// create the path: styles/main.scss in your src directory
–src
  |––styles
  |––main.scss

// add this to your vue.config.js file in the root directory
module.exports = {
  css: {
    loaderOptions: {
      sass: {
        prependData: `@import "@/styles/_variables.scss";`
      }
    }
  }
};
Posted by: Guest on July-23-2020
0

vue.js use scss in balise style

// in terminal
// If you use npm
npm install sass-loader node-sass --save-dev
// If you use yarn 
yarn add sass-loader node-sass

// In your component
<style lang="scss">
  // ...
</style>
Posted by: Guest on January-19-2021
1

vue js sass

# /!\ if you work with [email protected], it seems [email protected] doesn't work
# So, in terminal:
yarn add node-sass [email protected]
Posted by: Guest on April-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language