15 lines
360 B
Vue
15 lines
360 B
Vue
<template lang="pug">
|
|
medcard-form-wrapper(title="Пациент на приеме", title-link="Медкарта")
|
|
</template>
|
|
|
|
<script>
|
|
import MedcardFormWrapper from "@/pages/medcards/components/MedcardFormWrapper.vue";
|
|
|
|
export default {
|
|
name: "CurrentPatientForm",
|
|
components: { MedcardFormWrapper },
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped></style>
|