Schedule overview page

This commit is contained in:
2023-04-24 21:16:05 -04:00
parent 57028906b4
commit 2ecce6be8c
3 changed files with 98 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
import RouteSchedule from './RouteSchedule.vue';
import RoutePatientLookup from './RoutePatientLookup.vue';
import RoutePatientDetail from './RoutePatientDetail.vue';
import RouteScheduleOverview from './RouteScheduleOverview.vue';
import RouteRecall from './RouteRecall.vue';
export default {
@@ -41,6 +42,7 @@
{ path: '/', component: RouteSchedule },
{ path: '/patient', component: RoutePatientLookup },
{ path: '/patient/:id', component: RoutePatientDetail },
{ path: '/overview', component: RouteScheduleOverview },
{ path: '/recall', component: RouteRecall },
].forEach(route => this.$root.$router.addRoute(route));
await this.$root.$router.replace(this.$route);