purityselect/resources/js/pages/doctor-appiontment.vue
2024-10-25 01:05:27 +05:00

17 lines
280 B
Vue

<script setup>
import DoctorAppointmentsLists from '@/views/pages/tables/DoctorAppointments.vue';
</script>
<template>
<VRow>
<VCol cols="12">
<VCard title="Doctor Appointments">
<DoctorAppointmentsLists />
</VCard>
</VCol>
</VRow>
</template>