AnalyticsTransactions.vue
1.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<script setup lang="ts">
const statistics = [
{
title: 'Sales',
stats: '245k',
icon: 'ri-pie-chart-2-line',
color: 'primary',
},
{
title: 'Customers',
stats: '12.5k',
icon: 'ri-group-line',
color: 'success',
},
{
title: 'Product',
stats: '1.54k',
icon: 'ri-macbook-line',
color: 'warning',
},
{
title: 'Revenue',
stats: '$88k',
icon: 'ri-money-dollar-circle-line',
color: 'info',
},
]
</script>
<template>
<VCard title="Transactions">
<template #subtitle>
<p class="text-body-1 mb-0">
<span class="d-inline-block font-weight-medium text-high-emphasis">Total 48.5% Growth</span> <span class="text-high-emphasis">😎</span> this month
</p>
</template>
<template #append>
<IconBtn class="mt-n5">
<VIcon
color="high-emphasis"
icon="ri-more-2-line"
/>
</IconBtn>
</template>
<VCardText class="pt-10">
<VRow>
<VCol
v-for="item in statistics"
:key="item.title"
cols="12"
sm="6"
md="3"
>
<div class="d-flex align-center gap-x-3">
<VAvatar
:color="item.color"
rounded
size="40"
class="elevation-2"
>
<VIcon
size="24"
:icon="item.icon"
/>
</VAvatar>
<div class="d-flex flex-column">
<div class="text-body-1">
{{ item.title }}
</div>
<h5 class="text-h5">
{{ item.stats }}
</h5>
</div>
</div>
</VCol>
</VRow>
</VCardText>
</VCard>
</template>