rejuvallife/resources/js/pages/lab-kits.vue
2024-10-25 01:02:11 +05:00

15 lines
263 B
Vue

<script setup>
import LabKitLists from '@/views/pages/tables/Labkit.vue';
</script>
<template>
<VRow>
<VCol cols="12">
<VCard title="Lab kits">
<LabKitLists />
</VCard>
</VCol>
</VRow>
</template>