1👍
I figured it out!!
I was supposed to use div class="row"
Instead of
Maybe its something wrong with my personal Vuetify setup though but this seems to work perfect for me.
👤RSQL
0👍
You have a typo, instead of <v-row no-gutters>
you have <row no-gutters>
.
Just changes both instances of row
, to v-row
and you should be good to go 🙂
This typo was unfortunate, because <row>
is still valid, if you had missed v
and had <-row>
your IDE/Browser should’ve let you know lol.
- [Vuejs]-Vue.js Composition API vs Options API – posts ref in a v-for loop
- [Vuejs]-V-model and scoped slots not working?
Source:stackexchange.com