Files
webapp/app/pages/callback.vue
2026-01-07 09:10:35 +07:00

17 lines
342 B
Vue

<template>
<Section variant="plain" paddingY="md">
<Stack align="center" justify="center" gap="4" fullHeight>
<Spinner />
<Text tone="muted">Redirecting...</Text>
</Stack>
</Section>
</template>
<script setup>
const localePath = useLocalePath()
onMounted(() => {
navigateTo(localePath('/clientarea'))
})
</script>