Home Page
+ Added Information + First and Second Entrie
This commit is contained in:
@@ -19,7 +19,11 @@ function toggleDrawer() {
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
theme.change(localStorage.getItem('theme') || 'light');
|
||||
theme.change(
|
||||
localStorage.getItem('theme') || window.matchMedia('(prefers-color-scheme: dark)').matches
|
||||
? 'dark'
|
||||
: 'light',
|
||||
);
|
||||
showDrawer.value = localStorage.getItem('drawer')?.startsWith('Y') || false;
|
||||
});
|
||||
</script>
|
||||
@@ -40,7 +44,9 @@ onMounted(() => {
|
||||
<v-app-bar-nav-icon @click="toggleDrawer()"></v-app-bar-nav-icon>
|
||||
</template>
|
||||
|
||||
<v-app-bar-title class="title"> Judoteam - Stadtlohn </v-app-bar-title>
|
||||
<v-app-bar-title class="title" @click="$router.push({ name: 'Home' })"
|
||||
><span class="pointer">Judoteam - Stadtlohn</span></v-app-bar-title
|
||||
>
|
||||
|
||||
<v-tooltip>
|
||||
<template #activator="{ props }">
|
||||
|
||||
Reference in New Issue
Block a user