WIP Начала поиск медкарт

This commit is contained in:
Daria Golova
2023-07-25 17:51:58 +03:00
parent c1f65f6294
commit 1f5c4814a0
5 changed files with 231 additions and 55 deletions

View File

@@ -1,15 +1,15 @@
<template lang="pug">
.medcards-wrapper.flex.flex-col.w-full
.medcards-wrapper.flex.flex-col.w-full.gap-y-2.h-full
table-patients
medical-card-search
medical-card-list
</template>
<script>
import MedicalCardSearch from "./components/MedicalCardSearch.vue";
import MedicalCardList from "./components/MedicalCardList.vue";
import TablePatients from "./components/TablePatients.vue";
export default {
name: "TheMedcards",
components: { MedicalCardSearch, TablePatients },
components: { MedicalCardList, TablePatients },
};
</script>