1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-07 04:39:10 +01:00
elk/pages/login/callback.vue
2022-11-21 18:27:28 +08:00

24 lines
352 B
Vue

<script setup lang="ts">
definePageMeta({
layout: 'none',
})
const { query } = useRoute()
onMounted(async () => {
const { login } = useClientState()
await login(query as any)
await nextTick()
await nextTick()
location.pathname = '/'
})
</script>
<template>
<div h-full flex>
<div ma>
Login...
</div>
</div>
</template>