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
39 lines (39 loc) · 1.17 KB
/
Basic.vue
File metadata and controls
39 lines (39 loc) · 1.17 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
<template>
<div class="q-pa-md q-gutter-md">
<div>
<q-chip icon="event">Add to calendar</q-chip>
<q-chip icon="bookmark">Bookmark</q-chip>
<q-chip icon="alarm" label="Set alarm" />
<q-chip class="glossy" icon="directions">Get directions</q-chip>
</div>
<div>
<q-chip color="primary" text-color="white" icon="event">
Add to calendar
</q-chip>
<q-chip color="teal" text-color="white" icon="bookmark">
Bookmark
</q-chip>
<q-chip class="glossy" color="orange" text-color="white" icon-right="star">
Star
</q-chip>
<q-chip color="red" text-color="white" icon="alarm" label="Set alarm" />
<q-chip color="deep-orange" text-color="white" icon="directions">
Get directions
</q-chip>
<q-chip>
<q-avatar icon="bookmark" color="red" text-color="white" />
Bookmark
</q-chip>
<q-chip>
<q-avatar color="red" text-color="white">50</q-avatar>
Emails
</q-chip>
<q-chip>
<q-avatar>
<img src="https://cdn.quasar.dev/img/avatar5.jpg">
</q-avatar>
John
</q-chip>
</div>
</div>
</template>