[WIP] Добавил wrapper на формы страницы медкаточек
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user