17 lines
342 B
Vue
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>
|