komga/next-ui/src/components/app/bar/AppBar.vue
Gauthier Roebroeck b2da2ef561 next-ui wip
2026-02-03 11:14:22 +08:00

29 lines
552 B
Vue

<template>
<v-app-bar elevation="2">
<template #prepend>
<v-app-bar-nav-icon @click="appStore.drawer = !appStore.drawer" />
</template>
<v-app-bar-title>
<RouterLink to="/">
<v-avatar>
<v-img src="@/assets/logo.svg" />
</v-avatar>
</RouterLink>
Komga
</v-app-bar-title>
<ThemeSelector />
</v-app-bar>
</template>
<script setup lang="ts">
import {useAppStore} from '@/stores/app'
const appStore = useAppStore()
</script>
<script lang="ts">
</script>
<style scoped>
</style>