When using the Vuetify component v-slide-group
, there is a 'mandatory' prop that requires at least one item to be selected. Is there a way to specify which element should be selected instead of the default first one?
<v-slide-group center-active
mandatory
>
<v-slide-item v-for="item in items"
:key="item.id"
:value="item.value"
>
{{ item.name }}
</v-slide-item>
</v-slide-group>
In this example, the first item from 'items' is chosen by default. However, I want 'N' items to be chosen. Is there a way to achieve this?