forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersistent.vue
More file actions
34 lines (34 loc) · 1.03 KB
/
Persistent.vue
File metadata and controls
34 lines (34 loc) · 1.03 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
<template>
<div class="q-pa-md">
<q-btn color="primary" label="Persistent Menu">
<q-menu persistent auto-close>
<q-list style="min-width: 100px">
<q-item clickable>
<q-item-section>New tab</q-item-section>
</q-item>
<q-item clickable>
<q-item-section>New incognito tab</q-item-section>
</q-item>
<q-separator />
<q-item clickable>
<q-item-section>Recent tabs</q-item-section>
</q-item>
<q-item clickable>
<q-item-section>History</q-item-section>
</q-item>
<q-item clickable>
<q-item-section>Downloads</q-item-section>
</q-item>
<q-separator />
<q-item clickable>
<q-item-section>Settings</q-item-section>
</q-item>
<q-separator />
<q-item clickable>
<q-item-section>Help & Feedback</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
</div>
</template>