aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/index.vue
blob: 07b0a09730dae2a4109ee15d42380291fbad04b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>