elk/pages/login/callback.vue
2022-11-15 23:48:23 +08:00

18 lines
272 B
Vue

<script setup lang="ts">
const { query } = useRoute()
onMounted(async () => {
const { login } = useAppStore()
await login(query as any)
await nextTick()
await nextTick()
location.pathname = '/'
})
</script>
<template>
<div>
Login...
</div>
</template>