Skip to content

Instantly share code, notes, and snippets.

@gvorster
Created May 28, 2023 06:31
Show Gist options
  • Save gvorster/6521b6ad0dd7c2d56eb6f8cd645fa053 to your computer and use it in GitHub Desktop.
Save gvorster/6521b6ad0dd7c2d56eb6f8cd645fa053 to your computer and use it in GitHub Desktop.
vuetify v-list group example
<v-list-group value="GROUP_ID">
<template v-slot:activator="{ props }">
<v-list-item v-bind="props" prepend-icon="mdi-home" title="Menu title"></v-list-item>
</template>
<Link :href="route('bestellijst.index')">
<v-list-item v-bind="props" prepend-icon="mdi-home" title="Sub item 1"></v-list-item>
</Link>
<Link :href="route('home')">
<v-list-item v-bind="props" prepend-icon="mdi-home" title="Sub item 2"></v-list-item>
</Link>
</v-list-group>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment