15 lines
253 B
Vue
15 lines
253 B
Vue
<script setup>
|
|
import AppointmentsLists from '@/views/pages/tables/appointments.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<VRow>
|
|
<VCol cols="12">
|
|
<VCard title="Appointments">
|
|
<AppointmentsLists />
|
|
</VCard>
|
|
</VCol>
|
|
|
|
</VRow>
|
|
</template>
|