diff options
Diffstat (limited to 'pse-dashboard/src/App.vue')
-rw-r--r-- | pse-dashboard/src/App.vue | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pse-dashboard/src/App.vue b/pse-dashboard/src/App.vue new file mode 100644 index 0000000..bd387ff --- /dev/null +++ b/pse-dashboard/src/App.vue @@ -0,0 +1,13 @@ +<script setup> +import { ErrorLog, NavBar, HelpModal } from '@/components'; +</script> + +<template> + <NavBar /> + <router-view /> + <HelpModal /> + <ErrorLog /> +</template> + +<style scoped> +</style> |