VistA alert display

This commit is contained in:
2023-05-08 22:52:55 -04:00
parent 98cd861b5b
commit 38b13f9ad6
3 changed files with 90 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
import RoutePatientOrders from './RoutePatientOrders.vue';
import RoutePlanner from './RoutePlanner.vue';
import RouteRecall from './RouteRecall.vue';
import RouteInbox from './RouteInbox.vue';
export default {
components: {
@@ -45,7 +46,8 @@
{ name: 'Schedule', href: '/' },
{ name: 'Lookup', href: '/lookup' },
{ name: 'Planner', href: '/planner' },
{ name: 'Recall', href: '/recall' }
{ name: 'Recall', href: '/recall' },
{ name: 'Inbox', href: '/inbox' },
]
}
};
@@ -64,6 +66,7 @@
] },
{ path: '/planner', component: RoutePlanner },
{ path: '/recall', component: RouteRecall },
{ path: '/inbox', component: RouteInbox },
].forEach(route => this.$root.$router.addRoute(route));
await this.$root.$router.replace(this.$route);
}