aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/App.vue')
-rw-r--r--front-end/src/App.vue14
1 files changed, 14 insertions, 0 deletions
diff --git a/front-end/src/App.vue b/front-end/src/App.vue
new file mode 100644
index 0000000..92b8d5c
--- /dev/null
+++ b/front-end/src/App.vue
@@ -0,0 +1,14 @@
+<template>
+ <!-- Import environment component top level as the entrypoint -->
+ <Environment>
+ <template #main>
+ <router-view />
+ </template>
+ </Environment>
+
+</template>
+
+<script setup lang="ts">
+import Environment from './bootstrap/Environment.vue';
+
+</script> \ No newline at end of file