chore: install prettier

This commit is contained in:
Viet An
2026-05-04 15:22:27 +07:00
parent 93d29ca7d8
commit bd58e2b847
267 changed files with 22950 additions and 13581 deletions

View File

@@ -1,40 +1,40 @@
<script setup>
import OrderStatusCard from '@/components/dashboard/OrderStatusCard.vue';
import OrderStatusCard from "@/components/dashboard/OrderStatusCard.vue";
const statuses = [
{
id: 1,
code: 'pending',
name: 'Chờ xử lý',
code: "pending",
name: "Chờ xử lý",
value: 12,
color: 'orange',
icon: 'material-symbols:clock-loader-40'
color: "orange",
icon: "material-symbols:clock-loader-40",
},
{
id: 2,
code: 'delivering',
name: 'Đang giao',
code: "delivering",
name: "Đang giao",
value: 8,
color: 'blue',
icon: 'material-symbols:delivery-truck-speed-outline-rounded'
color: "blue",
icon: "material-symbols:delivery-truck-speed-outline-rounded",
},
{
id: 3,
code: 'delivered',
name: 'Đã giao',
code: "delivered",
name: "Đã giao",
value: 15,
color: 'purple',
icon: 'material-symbols:bucket-check-outline-rounded'
color: "purple",
icon: "material-symbols:bucket-check-outline-rounded",
},
{
id: 4,
code: 'completed',
name: 'Hoàn thành',
code: "completed",
name: "Hoàn thành",
value: 38,
color: 'green',
icon: 'material-symbols:check-circle-outline-rounded'
color: "green",
icon: "material-symbols:check-circle-outline-rounded",
},
]
];
</script>
<template>
<div class="card h-full">
@@ -51,4 +51,4 @@ const statuses = [
</div>
</div>
</div>
</template>
</template>