refactor: oauth页面spin

This commit is contained in:
dap 2025-09-11 20:44:03 +08:00
parent bd23f62c4f
commit 0c081031c2

View File

@ -7,8 +7,9 @@ import { useRoute, useRouter } from 'vue-router';
import { DEFAULT_TENANT_ID } from '@vben/constants';
import { preferences } from '@vben/preferences';
import { useAccessStore } from '@vben/stores';
import { cn } from '@vben/utils';
import { message } from 'ant-design-vue';
import { message, Spin } from 'ant-design-vue';
import { authCallback } from '#/api';
import { useAuthStore } from '#/store';
@ -78,7 +79,7 @@ onMounted(async () => {
</script>
<template>
<div></div>
<div :class="cn('flex items-center justify-center', 'h-screen w-screen')">
<Spin size="large" />
</div>
</template>
<style scoped></style>