15 lines
285 B
Vue
15 lines
285 B
Vue
<template>
|
|
<h1>Authentication callback processing...</h1>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
onMounted(async () => {
|
|
const logger = useLogger().withTag('auth callback')
|
|
try {
|
|
await navigateTo('/')
|
|
} catch (e) {
|
|
logger.error('Error during login', e)
|
|
}
|
|
})
|
|
</script>
|