[Vuejs]-How to get vue JS single file component css into a file and not inline

0👍

If you want another options for add css in your component vue, you can create a css file inside your components folder who have the same name has your vue file (not an obligation), example :

  • myComponent.vue
  • myComponent.css

After you just need to import your css file inside your vue file.

Leave a comment