Maybe I'm missing something obvious, but I can't figure out the proper way to change the text color in a v-btn
. This works, but having to use !important
doesn't seem ideal:
.v-btn
color: red !important
The color
prop is only for the background color, as far as I'm aware. And I guess I could change the theme primary/secondary when calling Vue.use(Vuetify, { theme: {...}} )
, but what if I want to override a single component?