Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vuetify nested list closed by default

Tags:

vuetify.js

How do you set the vuetify nested list to be closed by default? The documentation example shows the nested list functionality but the nested list is open by default when adding to an app. https://vuetifyjs.com/en/components/navigation-drawers#example-nested

like image 206
findev Avatar asked Dec 10 '22 05:12

findev


1 Answers

change value="true" to :value="false" on <v-list-group> element.

Notice you need :, but it's probably accidentally missing in the docs.

like image 87
Traxo Avatar answered Dec 29 '22 16:12

Traxo