-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
73 lines (66 loc) · 1.67 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<div>
<v-app>
<transition name="fade">
<div>
<v-navigation-drawer v-model="drawer">
<v-list>
<Profile @navigate="navigateTo" />
</v-list>
</v-navigation-drawer>
<v-app-bar app>
<v-app-bar-nav-icon @click="toggleDrawer"></v-app-bar-nav-icon>
<v-app-bar-title>Title of the App</v-app-bar-title>
<v-spacer></v-spacer>
<v-switch label="Dark mode" v-model="isDark"></v-switch>
<LoginNav @navigate="navigateTo" />
</v-app-bar>
<v-main>
<router-view />
</v-main>
</div>
</transition>
</v-app>
</div>
</template>
<script>
import LoginNav from '@/components/LoginNav.vue';
import Profile from '@/components/Profile.vue';
import FontSizeAdjuster from '@/components/FontSizeAdjuster.vue';
import { ref, watch } from 'vue';
import { useTheme } from 'vuetify';
import { useRouter } from 'vue-router';
export default {
components: {
LoginNav,
Profile,
FontSizeAdjuster
},
setup() {
const theme = useTheme();
const isDark = ref(theme.global.name.value === 'dark');
const drawer = ref(false);
const router = useRouter();
const toggleDrawer = () => {
drawer.value = !drawer.value;
}
const navigateTo = (route) => {
console.log(`Navigating to: ${route}`);
// Implement your navigation logic here
router.push('/' + route);
}
watch(isDark, (newVal) => {
theme.global.name.value = newVal ? 'dark' : 'light';
})
return {
isDark,
drawer,
toggleDrawer,
navigateTo
};
}
}
</script>
<style scoped>
/* If you have any styles, it's best to keep them scoped to prevent them from affecting other components */
</style>