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

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>