Answers for "laravel vuejs use scss in components"

6

vue scss

npm install sass-loader node-sass style-loader --save-dev
Posted by: Guest on April-12-2020
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language