-
-
Save gvorster/6521b6ad0dd7c2d56eb6f8cd645fa053 to your computer and use it in GitHub Desktop.
vuetify v-list group example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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