Lucien Cartier-Tilet 4cbdfeac7b
Some checks failed
Tests / tests (push) Failing after 9s
initial commit
2025-05-29 13:08:48 +02:00

13 lines
264 B
Vue

<template>
<p v-if="isLoading">Redirecting...</p>
</template>
<script lang="ts" setup>
import { useHandleSignInCallback } from '@logto/vue';
import router from '@/router';
const { isLoading } = useHandleSignInCallback(() => {
router.push('/');
});
</script>