summaryrefslogtreecommitdiff
path: root/pse-dashboard/src/App.vue
blob: bd387ff257ba3a3562ddc9b2ad7cc3bcba158f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script setup>
import { ErrorLog, NavBar, HelpModal } from '@/components';
</script>

<template>
    <NavBar />
    <router-view />
    <HelpModal />
    <ErrorLog />
</template>

<style scoped>
</style>