Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
<script setup>
import { useTheme } from 'vuetify'
const vuetifyTheme = useTheme()
const currentTheme = vuetifyTheme.current.value.colors
const series = [{
data: [
400,
200,
650,
500,
],
}]
const chartOptions = {
chart: {
type: 'area',
toolbar: { show: false },
sparkline: { enabled: true },
},
markers: {
colors: 'transparent',
strokeColors: 'transparent',
},
grid: { show: false },
colors: [currentTheme.success],
fill: {
type: 'gradient',
gradient: {
shadeIntensity: 0.8,
opacityFrom: 0.6,
opacityTo: 0.1,
},
},
dataLabels: { enabled: false },
stroke: {
width: 2,
curve: 'smooth',
},
xaxis: {
show: true,
lines: { show: false },
labels: { show: false },
stroke: { width: 0 },
axisBorder: { show: false },
},
yaxis: {
stroke: { width: 0 },
show: false,
},
responsive: [
{
breakpoint: 1387,
options: { chart: { height: 80 } },
},
{
breakpoint: 1200,
options: { chart: { height: 120 } },
},
],
}
</script>
<template>
<VCard>
<VCardText>
<h5 class="text-h5 mb-3">
Average Daily Sales
</h5>
<p class="mb-0">
Total Sales This Month
</p>
<h4 class="text-h4">
$28,450
</h4>
</VCardText>
<VueApexCharts
:options="chartOptions"
:series="series"
:height="122"
/>
</VCard>
</template>