Files
2026-03-17 09:22:24 +07:00

77 lines
3.1 KiB
Vue

<template>
<v-row>
<v-col cols="12">
<v-row>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Current Value</h2>
<widgets-charts-current-value />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Customer</h2>
<widgets-charts-customer />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Earned</h2>
<widgets-charts-earned />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Followers</h2>
<widgets-charts-followers />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Monthly Earnings</h2>
<widgets-charts-monthly-earnings />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Most Visited</h2>
<widgets-charts-most-visited />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Page Impression</h2>
<widgets-charts-page-impression />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Projects</h2>
<widgets-charts-projects />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Revenue Updates</h2>
<widgets-charts-revenue-updates />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Sales Overview</h2>
<widgets-charts-sales-overview />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Total Earning</h2>
<widgets-charts-total-earning />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Views</h2>
<widgets-charts-views />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Yearly Breakup</h2>
<widgets-charts-yearly-breakup />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Yearly Sales</h2>
<widgets-charts-yearly-sales />
</v-col>
</v-row>
</v-col>
</v-row>
</template>