[Vuejs]-How can I include css file in vuejs 2 ?

2👍

if you’re using webpack you can just import your stylesheets in your main js config and all your components will get the css.
like this :

require('./assets/css/main.css');

Leave a comment