Добавил роутинг на страницу медкарточек
This commit is contained in:
15
src/pages/medcards/TheMedcards.vue
Normal file
15
src/pages/medcards/TheMedcards.vue
Normal 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>
|
||||
Reference in New Issue
Block a user