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

Download this file

19 lines (17 with data), 373 Bytes

<template>
    <div>
        <!-- <h1>this is doctor dashboard</h1> -->
        <doctord/>
    </div>
</template>

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