Skip to content
Snippets Groups Projects
Commit ed84eeb8 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Navigation density compact + nav define for v-list

parent 29e133e9
No related branches found
No related tags found
No related merge requests found
......@@ -7,14 +7,13 @@
<v-toolbar-title>Microbial Warefare</v-toolbar-title>
<v-btn @click="toggleTheme">toggle theme</v-btn>
</v-app-bar>
<v-navigation-drawer v-model="drawer">
<v-navigation-drawer v-model="drawer" :border="0">
<v-card flat>
<v-list>
<v-list nav density="compact" :lines="false">
<NavNavigation :navigation="navigation" />
</v-list>
</v-card>
</v-navigation-drawer>
</template>
<script setup lang="ts">
import { useTheme } from "vuetify";
......
......@@ -13,7 +13,6 @@ const props = defineProps<{
<template v-slot:activator="{ props }">
<v-list-item
v-bind="props"
nav
:title="navItem.title"
active-color="primary"
></v-list-item>
......@@ -22,7 +21,6 @@ const props = defineProps<{
</v-list-group>
<template v-else>
<v-list-item
nav
:title="navItem.title"
:value="navItem.title"
:to="navItem._path"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment