[Vuejs]-My vuetify CSS does not take effect on my project

1👍

I had the same experience in my latest project. Vuetify has some quirks in it that make CSS styling a little different. In general, using <style scoped> will not cause any changes with Vuetify, but using the global scoping <style> will. For some properties, you’ll only notice changes if you use the !important tag.

You’ll need to make sure you’re wrapping everything and using loaders properly to get your CSS working as you intend. Details regarding that are here in detail:
Vuetify – CSS not working (taking effect) inside component

👤Arc

Leave a comment