aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
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>