16 lines
344 B
Vue
16 lines
344 B
Vue
<script setup>
|
|
import PatientAppointmentsDetail from '@/views/pages/tables/patient-appiontments-detail.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<VRow>
|
|
<VCol cols="12">
|
|
<VCard class="text-primary" title="Appointment Detail">
|
|
|
|
<PatientAppointmentsDetail />
|
|
</VCard>
|
|
</VCol>
|
|
|
|
</VRow>
|
|
</template>
|