forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCard.vue
More file actions
27 lines (24 loc) · 673 Bytes
/
Card.vue
File metadata and controls
27 lines (24 loc) · 673 Bytes
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
<template>
<div class="q-pa-md">
<q-card style="max-width: 300px">
<q-item>
<q-item-section avatar>
<q-skeleton type="QAvatar" />
</q-item-section>
<q-item-section>
<q-item-label>
<q-skeleton type="text" />
</q-item-label>
<q-item-label caption>
<q-skeleton type="text" />
</q-item-label>
</q-item-section>
</q-item>
<q-skeleton height="200px" square />
<q-card-actions align="right" class="q-gutter-md">
<q-skeleton type="QBtn" />
<q-skeleton type="QBtn" />
</q-card-actions>
</q-card>
</div>
</template>