This commit is contained in:
kk
2026-07-08 18:00:33 +08:00
commit e66b4a3680
312 changed files with 54718 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="error-page">
<div class="img" style="background-image: url('/img/500.svg')"></div>
<div class="content">
<h1>500</h1>
<div class="desc">抱歉服务器出错了</div>
<div class="actions">
<router-link :to="{ path: '/' }">
<el-button type="primary">返回首页</el-button>
</router-link>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'error-500',
};
</script>
<style lang="scss" scoped>
@use './style.scss';
</style>