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

Download this file

19 lines (17 with data), 371 Bytes

<template>
    <div>
        <h1>this is patient dashboard</h1>
        <patientd />
    </div>
</template>

<script>
// // @ is an alias to /src
// // import LoginPatient from '../components/LoginPatient.vue'
 import patientd from '../components/patientd.vue'
export default {
  name: 'PatientDashboard',
   components: {
    patientd
   }
}
</script>