forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic.vue
More file actions
53 lines (45 loc) · 1.22 KB
/
Basic.vue
File metadata and controls
53 lines (45 loc) · 1.22 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
<template>
<div class="q-pa-md q-gutter-md">
<q-badge color="blue">
#4D96F2
</q-badge>
<q-badge color="orange" text-color="black" label="2" />
<q-badge color="purple">
<q-icon name="bluetooth" color="white" />
</q-badge>
<q-badge color="red">
12 <q-icon name="warning" color="white" class="q-ml-xs" />
</q-badge>
<div class="text-h6">
Badge <q-badge color="primary">v1.0.0+</q-badge>
</div>
<div>
Feature <q-badge color="primary">v1.0.0+</q-badge>
</div>
<q-item clickable v-ripple class="bg-grey-2">
<q-item-section avatar>
<q-avatar rounded>
<img src="https://cdn.quasar.dev/img/chaosmonkey.png">
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label>
Ganglia
</q-item-label>
<q-item-label caption>
<q-badge color="yellow-6" text-color="black">
3
<q-icon
name="warning"
size="14px"
class="q-ml-xs"
/>
</q-badge>
</q-item-label>
</q-item-section>
<q-item-section side>
<span>2 min ago</span>
</q-item-section>
</q-item>
</div>
</template>