mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 04:22:28 +02:00
36 lines
683 B
Vue
36 lines
683 B
Vue
<template>
|
|
<v-list-group value="Server">
|
|
<template #activator="{ props }">
|
|
<v-list-item
|
|
v-bind="props"
|
|
title="Server"
|
|
prepend-icon="mdi-cog"
|
|
/>
|
|
</template>
|
|
|
|
<v-list-item
|
|
to="/server/users"
|
|
title="Users"
|
|
/>
|
|
<v-list-item
|
|
to="/server/settings"
|
|
title="Settings"
|
|
/>
|
|
<v-list-item
|
|
to="/server/ui"
|
|
title="User Interface"
|
|
/>
|
|
<v-list-item
|
|
to="/server/metrics"
|
|
title="Metrics"
|
|
/>
|
|
<v-list-item
|
|
to="/server/announcements"
|
|
title="Announcements"
|
|
/>
|
|
<v-list-item
|
|
to="/server/updates"
|
|
title="Updates"
|
|
/>
|
|
</v-list-group>
|
|
</template>
|