forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomization.vue
More file actions
66 lines (65 loc) · 2.05 KB
/
Customization.vue
File metadata and controls
66 lines (65 loc) · 2.05 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
<template>
<div class="q-pa-md">
<q-markup-table flat bordered>
<thead class="bg-teal">
<tr>
<th colspan="5">
<div class="row no-wrap items-center">
<q-img
style="width: 70px"
:ratio="1"
class="rounded-borders"
src="https://cdn.quasar.dev/img/donuts.png"
/>
<div class="text-h4 q-ml-md text-white">Treats</div>
</div>
</th>
</tr>
<tr>
<th class="text-left">Dessert (100g serving)</th>
<th class="text-right">Calories</th>
<th class="text-right">Fat (g)</th>
<th class="text-right">Carbs (g)</th>
<th class="text-right">Protein (g)</th>
</tr>
</thead>
<tbody class="bg-grey-3">
<tr>
<td class="text-left">Frozen Yogurt</td>
<td class="text-right">159</td>
<td class="text-right">6</td>
<td class="text-right">24</td>
<td class="text-right">4</td>
</tr>
<tr>
<td class="text-left">Ice cream sandwich</td>
<td class="text-right">237</td>
<td class="text-right">9</td>
<td class="text-right">37</td>
<td class="text-right">4.3</td>
</tr>
<tr>
<td class="text-left">Eclair</td>
<td class="text-right">262</td>
<td class="text-right">16</td>
<td class="text-right">23</td>
<td class="text-right">6</td>
</tr>
<tr>
<td class="text-left">Cupcake</td>
<td class="text-right">305</td>
<td class="text-right">3.7</td>
<td class="text-right">67</td>
<td class="text-right">4.3</td>
</tr>
<tr>
<td class="text-left">Gingerbread</td>
<td class="text-right">356</td>
<td class="text-right">16</td>
<td class="text-right">49</td>
<td class="text-right">3.9</td>
</tr>
</tbody>
</q-markup-table>
</div>
</template>