summaryrefslogtreecommitdiff
path: root/front-end/src/views/index.vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/views/index.vue')
-rw-r--r--front-end/src/views/index.vue18
1 files changed, 18 insertions, 0 deletions
diff --git a/front-end/src/views/index.vue b/front-end/src/views/index.vue
new file mode 100644
index 0000000..07b0a09
--- /dev/null
+++ b/front-end/src/views/index.vue
@@ -0,0 +1,18 @@
+<template>
+ <div id="home-page-entry" class="app-component-entry">
+
+ </div>
+</template>
+
+<script setup lang="ts">
+
+import { useRouter } from 'vue-router';
+
+const { push } = useRouter();
+push('/blog')
+
+</script>
+
+<style lang="scss">
+
+</style> \ No newline at end of file