-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathquasar-classic-dark.vue
More file actions
122 lines (116 loc) · 3.35 KB
/
Copy pathquasar-classic-dark.vue
File metadata and controls
122 lines (116 loc) · 3.35 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<template>
<q-layout view="lHh Lpr lFf" class="bg-grey-9 text-white">
<q-header elevated class="bg-grey-6">
<q-toolbar>
<q-btn
flat
dense
round
@click="toggleLeftDrawer"
aria-label="Menu"
icon="menu"
/>
<q-toolbar-title> Quasar App </q-toolbar-title>
</q-toolbar>
</q-header>
<q-drawer v-model="leftDrawerOpen" show-if-above class="bg-grey-8">
<q-list dark>
<q-item-label header>Essential Links</q-item-label>
<q-item
clickable
target="_blank"
rel="noopener"
href="https://quasar.dev"
>
<q-item-section avatar>
<q-icon name="school" />
</q-item-section>
<q-item-section>
<q-item-label>Docs</q-item-label>
<q-item-label caption>https://quasar.dev</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
target="_blank"
rel="noopener"
href="https://github.quasar.dev"
>
<q-item-section avatar>
<q-icon name="code" />
</q-item-section>
<q-item-section>
<q-item-label>GitHub</q-item-label>
<q-item-label caption>github.com/quasarframework</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
target="_blank"
rel="noopener"
href="http://chat.quasar.dev"
>
<q-item-section avatar>
<q-icon name="chat" />
</q-item-section>
<q-item-section>
<q-item-label>Discord Chat Channel</q-item-label>
<q-item-label caption>https://chat.quasar.dev</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
target="_blank"
rel="noopener"
href="https://forum.quasar.dev"
>
<q-item-section avatar>
<q-icon name="record_voice_over" />
</q-item-section>
<q-item-section>
<q-item-label>Forum</q-item-label>
<q-item-label caption>https://forum.quasar.dev</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
target="_blank"
rel="noopener"
href="https://twitter.quasar.dev"
>
<q-item-section avatar>
<q-icon name="rss_feed" />
</q-item-section>
<q-item-section>
<q-item-label>Twitter</q-item-label>
<q-item-label caption>@quasarframework</q-item-label>
</q-item-section>
</q-item>
<q-item
clickable
target="_blank"
rel="noopener"
href="https://facebook.quasar.dev"
>
<q-item-section avatar>
<q-icon name="public" />
</q-item-section>
<q-item-section>
<q-item-label>Facebook</q-item-label>
<q-item-label caption>@QuasarFramework</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-drawer>
<q-page-container>
<router-view />
</q-page-container>
</q-layout>
</template>
<script setup>
import { ref } from 'vue'
const leftDrawerOpen = ref(false)
function toggleLeftDrawer() {
leftDrawerOpen.value = !leftDrawerOpen.value
}
</script>