How do I add a global scss file in Vue.JS that will compile?

前端 未结 5 1902
无人及你
无人及你 2021-01-13 15:07

I am trying to import a scss file within my VueJS project, where it will then compile and thus be able to use with my project. However, I need some help, as at present it si

5条回答
  •  感动是毒
    2021-01-13 15:29

    I updated the style tag to include the import statement and it works.

    @import 'scss/main.scss';
    
    #app {
        display:block;
    }
    
    

提交回复
热议问题