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,26 +1,26 @@
<script setup>
import Warning from '@/components/dashboard/Warning.vue';
import Warning from "@/components/dashboard/Warning.vue";
const warnings = [
{
name: 'Công nợ sắp đến hạn',
details: 'Công ty TNHH ABC - 35.000.000đ - Hạn: 25/03/2026',
name: "Công nợ sắp đến hạn",
details: "Công ty TNHH ABC - 35.000.000đ - Hạn: 25/03/2026",
level: 1,
type: 'time',
type: "time",
},
{
name: 'Đơn giao trễ',
details: 'Đơn hàng #DH-2156 - Đã trễ 2 giờ - Khách: Siêu thị XYZ',
name: "Đơn giao trễ",
details: "Đơn hàng #DH-2156 - Đã trễ 2 giờ - Khách: Siêu thị XYZ",
level: 3,
type: 'time',
type: "time",
},
{
name: 'Tồn kho thấp',
details: 'Gạo ST25 - Chỉ còn 45 bao - Cần nhập thêm',
name: "Tồn kho thấp",
details: "Gạo ST25 - Chỉ còn 45 bao - Cần nhập thêm",
level: 2,
type: 'inventory'
type: "inventory",
},
]
];
</script>
<template>
<div class="card">
@@ -35,4 +35,4 @@ const warnings = [
</div>
</div>
</div>
</template>
</template>