elk/pages/login/callback.vue

18 lines
275 B
Vue
Raw Normal View History

2022-11-15 16:48:23 +01:00
<script setup lang="ts">
const { query } = useRoute()
onMounted(async () => {
2022-11-17 22:32:03 +01:00
const { login } = useClientState()
2022-11-15 16:48:23 +01:00
await login(query as any)
await nextTick()
await nextTick()
location.pathname = '/'
})
</script>
<template>
<div>
Login...
</div>
</template>