mobilizon.chapril.org-mobil.../js/src/components/Utils/HomepageRedirectComponent.vue
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

13 lines
225 B
Vue

<template>
<div>a</div>
</template>
<script lang="ts" setup>
import RouteName from "@/router/name";
import { useRouter } from "vue-router";
const router = useRouter();
router.replace({ name: RouteName.HOME });
</script>