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

16 lines
341 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>
const { t } = useI18n()
const localePath = useLocalePath()
await navigateTo(localePath('/'))
</script>