This commit is contained in:
Viet An
2026-04-14 15:26:00 +07:00
parent 0011c3ced9
commit 1d30ca3408
9 changed files with 805 additions and 20 deletions

View File

@@ -1,5 +1,6 @@
<script setup>
import InventoryHighlightCard from '@/components/inventory/InventoryHighlightCard.vue';
import InventoryTable from '@/components/inventory/InventoryTable.vue';
const inventoryHighlights = [
{
@@ -31,13 +32,16 @@ const inventoryHighlights = [
];
</script>
<template>
<div class="fixed-grid has-2-cols-mobile has-4-cols">
<div class="grid">
<InventoryHighlightCard
v-for="highlight in inventoryHighlights"
:key="highlight.name"
v-bind="highlight"
/>
<div>
<div class="fixed-grid has-2-cols-mobile has-4-cols">
<div class="grid">
<InventoryHighlightCard
v-for="highlight in inventoryHighlights"
:key="highlight.name"
v-bind="highlight"
/>
</div>
</div>
<InventoryTable />
</div>
</template>