aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..ab2e3f5
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,11 @@
+<script setup lang="ts">
+import { RouterView } from 'vue-router'
+import navbar from './components/navbar.vue'
+</script>
+
+<template>
+ <navbar />
+ <main class="m-3">
+ <RouterView />
+ </main>
+</template>