[WIP] Добавил wrapper на формы страницы медкаточек

This commit is contained in:
megavrilinvv
2023-07-24 18:37:58 +03:00
parent c63fe8c319
commit 2e3764c6ac
6 changed files with 100 additions and 2 deletions

View File

@@ -1,9 +1,23 @@
<template lang="pug">
.table-wrapper.flex
.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>