17 lines
280 B
Vue
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>
|