I understand that vuetify's grid system is based on a 12-column flex-box layout, but I would like to customize it to have 7 or 8 columns by default instead of the usual 12. In the code snippet below, you can see my attempt:
<v-row>
<v-col
v-for="(n, index) in 15"
:key="index"
cols="7"
sm="7"
md="3"
lg="1"
>
<v-card>
<v-card-title>{{ index }}</v-card-title>
</v-card>
</v-col>
</v-row>
After reading through the documentation, I thought that setting cols="7"
would achieve the desired outcome, but it doesn't seem to be working as expected.
Is it actually possible to create a grid with 7 or 8 columns in Vuetify?