changes
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user