Reputation: 75
I am using vuetify and I wanted to add multiple styles to the same style attriibute. I have a vuetify breakpoint already inplace and I wanted to add {backgroundColor:'Color'}
in the same attribute? Putting them side by side doesn't seem to work.
<v-container fluid class="menu" :style="$vuetify.breakpoint.xs ? 'width: 13vw;' : 'width: 5vw'
**Here's where I want {backgroundColor:Color}**">
Upvotes: 0
Views: 1005