Добавил роутинг на страницу медкарточек

This commit is contained in:
megavrilinvv
2023-07-24 15:40:59 +03:00
parent 4c7e62d450
commit c63fe8c319
6 changed files with 44 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,9 @@
<template lang="pug">
.medical-wrapper.flex
</template>
<script>
export default { name: "MedicalCardSearch" };
</script>
<style lang="sass" scoped></style>

View File

@@ -0,0 +1,9 @@
<template lang="pug">
.table-wrapper.flex
</template>
<script>
export default {
name: "TablePatients",
};
</script>