aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/App.vue
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
commitf64955c69d91e578e580b409ba31ac4b3477da96 (patch)
tree16f01392ddf1abfea13d7d1ede3bfb0459fe8f0d /front-end/src/App.vue
Initial commit
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