mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
15 lines
443 B
Vue
15 lines
443 B
Vue
<script setup lang="ts">
|
||
import noServer from "/@/assets/status/500.svg?component";
|
||
</script>
|
||
|
||
<template>
|
||
<div class="flex justify-center items-center h-screen-sm">
|
||
<noServer />
|
||
<div class="ml-12">
|
||
<p class="font-medium text-4xl mb-4">403</p>
|
||
<p class="mb-4 text-gray-500">抱歉,服务器出错了</p>
|
||
<el-button type="primary" @click="$router.push('/')">返回首页</el-button>
|
||
</div>
|
||
</div>
|
||
</template>
|