forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecipeFacebook.vue
More file actions
27 lines (24 loc) · 813 Bytes
/
RecipeFacebook.vue
File metadata and controls
27 lines (24 loc) · 813 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 flat bordered style="max-width: 300px">
<q-item>
<q-item-section avatar>
<q-skeleton type="QAvatar" animation="fade" />
</q-item-section>
<q-item-section>
<q-item-label>
<q-skeleton type="text" animation="fade" />
</q-item-label>
<q-item-label caption>
<q-skeleton type="text" animation="fade" />
</q-item-label>
</q-item-section>
</q-item>
<q-skeleton height="200px" square animation="fade" />
<q-card-section>
<q-skeleton type="text" class="text-subtitle2" animation="fade" />
<q-skeleton type="text" width="50%" class="text-subtitle2" animation="fade" />
</q-card-section>
</q-card>
</div>
</template>