15 lines
320 B
Vue
15 lines
320 B
Vue
<script setup>
|
|
import PatientLabKitDetail from '@/views/pages/tables/patient-labkit-detail.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<VRow>
|
|
<VCol cols="12">
|
|
<VCard class="text-primary" title="LabKit Detail">
|
|
<PatientLabKitDetail />
|
|
</VCard>
|
|
</VCol>
|
|
|
|
</VRow>
|
|
</template>
|