0👍
✅
The v-list-group
component has a value
property set to true
. Change it to :value="false"
You need
:
before ‘value`
<v-list-group
prepend-icon="account_circle"
:value="false"
>
This works because the Users
text is actually sitting inside of the activator slot
.
<template v-slot:activator>
<v-list-item-title>Users</v-list-item-title>
</template>
Source:stackexchange.com