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