[Vuejs]-How to import css by specific directory

0👍

In those files use <style> section and set scoped.
In fact, you’ll have something like

<style scoped>
   here you import goes
</style>

Read more about Vue CSS scopes here

Leave a comment