[Vuejs]-Why does css get installed when I run npm install [someLibraryName]?

0๐Ÿ‘

โœ…

I believe I found out what I was looking for thank you @ljubadr for your help.

In the recommended Getting Started vue material guide it states you can:

import 'vue-material/dist/vue-material.min.css'

However, if you only need one component, this should work for a specific CSS need on a specific vue component:

import 'vue-material/dist/Components/MdCard/index.css'

Leave a comment