[de9008]: / web-app / client / src / views / RegisterPatient.vue

Download this file

19 lines (16 with data), 342 Bytes

<template>
  <div class="RegisterPatient">
    
    <regpatient />
  </div>
</template>


<script>
// @ is an alias to /src
// import HelloWorld from '@/components/HelloWorld.vue'
import regpatient from '../components/regpatient.vue'
export default {
  name: 'RegisterPatient',
  components: {
    regpatient
  }
}
</script>