forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMacOS.vue
More file actions
69 lines (64 loc) · 2.18 KB
/
Copy pathMacOS.vue
File metadata and controls
69 lines (64 loc) · 2.18 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
<template>
<div class="q-pa-md q-gutter-sm">
<q-bar>
<q-btn dense flat :icon="fabApple" />
<div class="text-weight-bold">
App
</div>
<div class="cursor-pointer gt-md">File</div>
<div class="cursor-pointer gt-md">Edit</div>
<div class="cursor-pointer gt-md">View</div>
<div class="cursor-pointer gt-md">Window</div>
<div class="cursor-pointer gt-md">Help</div>
<q-space />
<q-btn dense flat icon="airplay" class="gt-xs" />
<q-btn dense flat icon="battery_charging_full" />
<q-btn dense flat icon="wifi" />
<div>9:41</div>
<q-btn dense flat icon="search" />
<q-btn dense flat icon="list" />
</q-bar>
<q-bar class="bg-black text-white">
<q-btn dense flat :icon="fabApple" />
<div class="text-weight-bold">
App
</div>
<div class="cursor-pointer gt-md">File</div>
<div class="cursor-pointer gt-md">Edit</div>
<div class="cursor-pointer gt-md">View</div>
<div class="cursor-pointer gt-md">Window</div>
<div class="cursor-pointer gt-md">Help</div>
<q-space />
<q-btn dense flat icon="airplay" class="gt-xs" />
<q-btn dense flat icon="battery_charging_full" />
<q-btn dense flat icon="wifi" />
<div>9:41</div>
<q-btn dense flat icon="search" />
<q-btn dense flat icon="list" />
</q-bar>
<q-bar>
<q-btn dense flat round icon="lens" size="8.5px" color="red" />
<q-btn dense flat round icon="lens" size="8.5px" color="yellow" />
<q-btn dense flat round icon="lens" size="8.5px" color="green" />
<div class="col text-center text-weight-bold">
My-App
</div>
</q-bar>
<q-bar dark class="bg-primary text-white">
<q-btn dense flat round icon="lens" size="8.5px" color="red" />
<q-btn dense flat round icon="lens" size="8.5px" color="yellow" />
<q-btn dense flat round icon="lens" size="8.5px" color="green" />
<div class="col text-center text-weight-bold">
My-App
</div>
</q-bar>
</div>
</template>
<script>
import { fabApple } from '@quasar/extras/fontawesome-v6'
export default {
setup () {
return { fabApple }
}
}
</script>