components/navigation/navigation: move "login" to bottom
and rename it to "My account"
This commit is contained in:
parent
ac49090615
commit
cf29c26abc
1 changed files with 2 additions and 2 deletions
|
@ -22,15 +22,15 @@ function switchTheme() {
|
|||
</VAppBar>
|
||||
<VNavigationDrawer v-model="navOpen" :temporary="mobile">
|
||||
<VList v-model:selected="navSelected" density="compact" nav>
|
||||
<VListItem prepend-icon="mdi-login" title="Login" value="/login" @click="navigateTo('/login')" />
|
||||
<VListItem prepend-icon="mdi-account" title="Clients" value="/clients" @click="navigateTo('/clients')" />
|
||||
<VListItem prepend-icon="mdi-receipt-text" title="Orders" value="/orders" @click="navigateTo('/orders')" />
|
||||
<VDivider />
|
||||
</VList>
|
||||
<template #append>
|
||||
<VList density="compact" nav>
|
||||
<VList v-model:selected="navSelected" density="compact" nav>
|
||||
<VDivider />
|
||||
<VListItem prepend-icon="mdi-theme-light-dark" title="Switch theme" class="mx-auto" @click="switchTheme()" />
|
||||
<VListItem prepend-icon="mdi-login" title="My account" value="/login" @click="navigateTo('/login')" />
|
||||
</VList>
|
||||
</template>
|
||||
</VNavigationDrawer>
|
||||
|
|
Loading…
Reference in a new issue