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>