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,35 +1,33 @@
<script setup>
import TopCustomer from '@/components/dashboard/TopCustomer.vue';
import TopCustomer from "@/components/dashboard/TopCustomer.vue";
const customers = [
{
name: 'Công ty TNHH ABC',
name: "Công ty TNHH ABC",
order_count: 45,
paid: 125000000,
},
{
name: 'Siêu thị XYZ',
name: "Siêu thị XYZ",
order_count: 38,
paid: 98000000,
},
{
name: 'Nhà hàng Đông Dương',
name: "Nhà hàng Đông Dương",
order_count: 32,
paid: 87000000,
},
{
name: 'Khách sạn Mường Thanh',
name: "Khách sạn Mường Thanh",
order_count: 28,
paid: 76000000,
},
{
name: 'Cửa hàng Bách Hoá',
name: "Cửa hàng Bách Hoá",
order_count: 24,
paid: 64000000,
},
]
];
</script>
<template>
<div class="card">
@@ -44,4 +42,4 @@ const customers = [
</div>
</div>
</div>
</template>
</template>