Reputation: 98
I'm trying to understand components for nesting items of a list but there's no explanation of the use case of v-list-group in the docs, just its API docs. I want to know when I should use each one.
Upvotes: 4
Views: 3883
Reputation: 362630
Refer to the Vuetify docs...
"The
v-list-item-group
provides the ability to create a group of selectablev-list-items
. Thev-list-item-group
component utilizesv-item-group
at its core to provide a clean interface for interactive lists."
Basically it allows for stateful list items, whereas the v-list
with v-list-group
do not.
Upvotes: 4