Answers for "how to connect scss to vuejs"

CSS
0

importing scss into vue component

<style lang="scss">
    @import 'sass/app.scss';
    html, body{
        margin: 0px;
        padding: 0px;
        background-color: $secondary-color;
    }
</style>
Posted by: Guest on February-24-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

Browse Popular Code Answers by Language