WIP Набросала строки таблицы

This commit is contained in:
Daria Golova
2023-07-26 18:26:24 +03:00
parent 2bb879c0cf
commit a747c1820d
27 changed files with 461 additions and 53 deletions

View File

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