13 lines
264 B
Vue
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>
|