aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-02-15 14:01:30 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-02-15 14:01:30 +0000
commit2aca4247c5d0c7061a300517178dd31316b65fab (patch)
tree10e145c2b57d76c778bdf1a11191495dcfe191f3 /src/App.vue
Initial commit
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..0b4985d
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,12 @@
+<script setup lang="ts">
+import SiteHeader from '@/components/Header/SiteHeader.vue';
+</script>
+
+<template>
+ <SiteHeader />
+
+ <RouterView />
+</template>
+
+<style scoped>
+</style>