Admit.vue 333 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
  <base-section
    id="admit"
    space="0"
  >
    <patient-file />
  </base-section>
</template>

<script>
  import PatientFile from '../../components/PatientFile.vue'
  export default {
    name: 'SectionAdmit',
    components: { PatientFile },

    provide: {
      heading: { align: 'center' },
    },
  }
</script>