68 lines
1.3 KiB
Vue
68 lines
1.3 KiB
Vue
|
|
<script setup>
|
||
|
|
const statistics = [
|
||
|
|
{
|
||
|
|
title: 'Sales',
|
||
|
|
stats: '230k',
|
||
|
|
icon: 'tabler-chart-pie-2',
|
||
|
|
color: 'primary',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Customers',
|
||
|
|
stats: '8.549k',
|
||
|
|
icon: 'tabler-users',
|
||
|
|
color: 'info',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Products',
|
||
|
|
stats: '1.423k',
|
||
|
|
icon: 'tabler-shopping-cart',
|
||
|
|
color: 'error',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Revenue',
|
||
|
|
stats: '$9745',
|
||
|
|
icon: 'tabler-currency-dollar',
|
||
|
|
color: 'success',
|
||
|
|
},
|
||
|
|
]
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VCard title="Statistics">
|
||
|
|
<template #append>
|
||
|
|
<span class="text-disabled text-subtitle-2">Updated 1 month ago</span>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<VCardText>
|
||
|
|
<VRow>
|
||
|
|
<VCol
|
||
|
|
v-for="item in statistics"
|
||
|
|
:key="item.title"
|
||
|
|
cols="6"
|
||
|
|
md="3"
|
||
|
|
>
|
||
|
|
<div class="d-flex gap-x-4 align-center">
|
||
|
|
<VAvatar
|
||
|
|
:color="item.color"
|
||
|
|
variant="tonal"
|
||
|
|
size="40"
|
||
|
|
rounded
|
||
|
|
>
|
||
|
|
<VIcon :icon="item.icon" />
|
||
|
|
</VAvatar>
|
||
|
|
|
||
|
|
<div class="d-flex flex-column">
|
||
|
|
<h5 class="text-h5">
|
||
|
|
{{ item.stats }}
|
||
|
|
</h5>
|
||
|
|
<div class="text-body-2">
|
||
|
|
{{ item.title }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</VCol>
|
||
|
|
</VRow>
|
||
|
|
</VCardText>
|
||
|
|
</VCard>
|
||
|
|
</template>
|