a b/web-app/client/src/views/PatientDashboard.vue
1
<template>
2
    <div>
3
        <h1>this is patient dashboard</h1>
4
        <patientd />
5
    </div>
6
</template>
7
8
<script>
9
// // @ is an alias to /src
10
// // import LoginPatient from '../components/LoginPatient.vue'
11
 import patientd from '../components/patientd.vue'
12
export default {
13
  name: 'PatientDashboard',
14
   components: {
15
    patientd
16
   }
17
}
18
</script>