forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleEmails.vue
More file actions
118 lines (101 loc) · 4.03 KB
/
ExampleEmails.vue
File metadata and controls
118 lines (101 loc) · 4.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
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
<template>
<div class="q-pa-md q-gutter-md">
<q-list bordered class="rounded-borders" style="max-width: 350px">
<q-item-label header>Friends</q-item-label>
<q-item clickable v-ripple>
<q-item-section avatar>
<q-avatar>
<img src="https://cdn.quasar.dev/img/avatar2.jpg">
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label lines="1">Brunch this weekend?</q-item-label>
<q-item-label caption lines="2">
<span class="text-weight-bold">Janet</span>
-- I'll be in your neighborhood doing errands this
weekend. Do you want to grab brunch?
</q-item-label>
</q-item-section>
<q-item-section side top>
1 min ago
</q-item-section>
</q-item>
<q-separator inset="item" />
<q-item clickable v-ripple>
<q-item-section avatar>
<q-avatar>
<img src="https://cdn.quasar.dev/img/avatar4.jpg">
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label lines="1">Linear Project</q-item-label>
<q-item-label caption lines="2">
<span class="text-weight-bold">John</span>
-- Can we schedule a call for tomorrow?
</q-item-label>
</q-item-section>
<q-item-section side top>
1 min ago
</q-item-section>
</q-item>
</q-list>
<q-list bordered class="rounded-borders" style="max-width: 600px">
<q-item-label header>Google Inbox style</q-item-label>
<q-item>
<q-item-section avatar top>
<q-icon name="account_tree" color="black" size="34px" />
</q-item-section>
<q-item-section top class="col-2 gt-sm">
<q-item-label class="q-mt-sm">GitHub</q-item-label>
</q-item-section>
<q-item-section top>
<q-item-label lines="1">
<span class="text-weight-medium">[quasarframework/quasar]</span>
<span class="text-grey-8"> - GitHub repository</span>
</q-item-label>
<q-item-label caption lines="1">
@rstoenescu in #3: > Generic type parameter for props
</q-item-label>
<q-item-label lines="1" class="q-mt-xs text-body2 text-weight-bold text-primary text-uppercase">
<span class="cursor-pointer">Open in GitHub</span>
</q-item-label>
</q-item-section>
<q-item-section top side>
<div class="text-grey-8 q-gutter-xs">
<q-btn class="gt-xs" size="12px" flat dense round icon="delete" />
<q-btn class="gt-xs" size="12px" flat dense round icon="done" />
<q-btn size="12px" flat dense round icon="more_vert" />
</div>
</q-item-section>
</q-item>
<q-separator spaced />
<q-item>
<q-item-section avatar top>
<q-icon name="account_tree" color="black" size="34px" />
</q-item-section>
<q-item-section top class="col-2 gt-sm">
<q-item-label class="q-mt-sm">GitHub</q-item-label>
</q-item-section>
<q-item-section top>
<q-item-label lines="1">
<span class="text-weight-medium">[quasarframework/quasar]</span>
<span class="text-grey-8"> - GitHub repository</span>
</q-item-label>
<q-item-label caption lines="1">
@rstoenescu in #1: > The build system
</q-item-label>
<q-item-label lines="1" class="q-mt-xs text-body2 text-weight-bold text-primary text-uppercase">
<span class="cursor-pointer">Open in GitHub</span>
</q-item-label>
</q-item-section>
<q-item-section top side>
<div class="text-grey-8 q-gutter-xs">
<q-btn class="gt-xs" size="12px" flat dense round icon="delete" />
<q-btn class="gt-xs" size="12px" flat dense round icon="done" />
<q-btn size="12px" flat dense round icon="more_vert" />
</div>
</q-item-section>
</q-item>
</q-list>
</div>
</template>