24 lines
585 B
Vue
24 lines
585 B
Vue
<template lang="pug">
|
|
.table-wrapper.flex.gap-x-2
|
|
todays-patients-form
|
|
current-patient-form
|
|
viewed-medical-records-form
|
|
</template>
|
|
|
|
<script>
|
|
import CurrentPatientForm from "./BasicDataForms/CurrentPatientForm.vue";
|
|
import TodaysPatientsForm from "./BasicDataForms/TodaysPatientsForm.vue";
|
|
import ViewedMedicalRecordsForm from "./BasicDataForms/ViewedMedicalRecordsForm.vue";
|
|
|
|
export default {
|
|
name: "TablePatients",
|
|
components: {
|
|
TodaysPatientsForm,
|
|
CurrentPatientForm,
|
|
ViewedMedicalRecordsForm,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped></style>
|