15 lines
263 B
Vue
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>
|