auth-web/src/components/Error/403.vue

45 lines
1.1 KiB
Vue
Raw Normal View History

<script lang="ts" setup>
import { useRouter } from 'vue-router';
import noAccess from '@/assets/status/403.svg?component';
import { $t } from '@/plugins/i18n';
2024-09-26 09:38:02 +08:00
defineOptions({
2025-04-24 13:43:37 +08:00
name: '403',
2024-09-26 09:38:02 +08:00
});
const router = useRouter();
</script>
<template>
2025-04-24 13:43:37 +08:00
<div class="flex justify-center items-center h-[640px]">
<noAccess />
<div class="ml-12">
<p
v-motion
:enter="{ opacity: 1, y: 0, transition: { delay: 80 } }"
:initial="{ opacity: 0, y: 100 }"
class="font-medium text-4xl mb-4 dark:text-white"
>
403
</p>
<p
v-motion
:enter="{ opacity: 1, y: 0, transition: { delay: 120 } }"
:initial="{ opacity: 0, y: 100 }"
class="mb-4 text-gray-500"
>
{{ $t('sorryNoAccess') }}
</p>
<el-button
v-motion
:enter="{ opacity: 1, y: 0, transition: { delay: 160 } }"
:initial="{ opacity: 0, y: 100 }"
type="primary"
@click="router.push('/')"
>
{{ $t('returnToHomepage') }}
</el-button>
</div>
</div>
2024-09-26 09:38:02 +08:00
</template>