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,34 +1,34 @@
<script setup>
import InventoryHighlightCard from '@/components/inventory/InventoryHighlightCard.vue';
import InventoryTable from '@/components/inventory/InventoryTable.vue';
import InventoryHighlightCard from "@/components/inventory/InventoryHighlightCard.vue";
import InventoryTable from "@/components/inventory/InventoryTable.vue";
const { $store } = useNuxtApp();
const inventoryHighlights = [
{
name: 'Tổng số SKU',
name: "Tổng số SKU",
value: 12,
icon: 'material-symbols:deployed-code-outline',
color: 'blue',
icon: "material-symbols:deployed-code-outline",
color: "blue",
},
{
name: 'Tổng tồn kho',
value: '1,120',
icon: 'material-symbols:box-outline-rounded',
color: 'green',
unit: 'đơn vị'
name: "Tổng tồn kho",
value: "1,120",
icon: "material-symbols:box-outline-rounded",
color: "green",
unit: "đơn vị",
},
{
name: 'Giá trị tồn kho',
value: '294.5M',
icon: 'material-symbols:attach-money-rounded',
color: 'purple',
name: "Giá trị tồn kho",
value: "294.5M",
icon: "material-symbols:attach-money-rounded",
color: "purple",
},
{
name: 'Sắp hết hàng',
name: "Sắp hết hàng",
value: 3,
icon: 'material-symbols:warning-outline-rounded',
color: 'red',
unit: 'sản phẩm'
icon: "material-symbols:warning-outline-rounded",
color: "red",
unit: "sản phẩm",
},
];
</script>
@@ -42,25 +42,37 @@ const inventoryHighlights = [
<div class="content buttons is-justify-content-flex-end">
<button class="button fs-14">
<span class="icon">
<Icon :size="18" name="material-symbols:download-rounded" />
<Icon
:size="18"
name="material-symbols:download-rounded"
/>
</span>
<span>Export</span>
</button>
<button class="button fs-14">
<span class="icon">
<Icon :size="18" name="material-symbols:upload-rounded" />
<Icon
:size="18"
name="material-symbols:upload-rounded"
/>
</span>
<span>Import</span>
</button>
<button class="button fs-14">
<span class="icon">
<Icon :size="18" name="material-symbols:sync" />
<Icon
:size="18"
name="material-symbols:sync"
/>
</span>
<span>Chuyển kho</span>
</button>
<button class="button fs-14 is-primary">
<span class="icon">
<Icon :size="18" name="material-symbols:add-2-rounded" />
<Icon
:size="18"
name="material-symbols:add-2-rounded"
/>
</span>
<span>Điều chỉnh</span>
</button>
@@ -77,4 +89,4 @@ const inventoryHighlights = [
</div>
<InventoryTable />
</div>
</template>
</template>