20 lines
409 B
Vue
20 lines
409 B
Vue
<template>
|
|
<Section variant="plain" paddingY="md">
|
|
<Stack align="center" justify="center" gap="2">
|
|
<Text tone="muted">{{ t('clientRedirect.status.redirecting') }}</Text>
|
|
</Stack>
|
|
</Section>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
layout: 'topnav',
|
|
middleware: ['auth-oidc']
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
|
|
const localePath = useLocalePath()
|
|
await navigateTo(localePath('/'))
|
|
</script>
|