增加后台管理模块

This commit is contained in:
2025-10-27 23:57:31 +08:00
parent 3c1ba8e801
commit 0016453f20
420 changed files with 5650 additions and 1449 deletions
+45
View File
@@ -0,0 +1,45 @@
<template>
<div class="not-found">
<div class="content">
<h1>404</h1>
<p>页面不存在</p>
<el-button type="primary" @click="goHome">返回首页</el-button>
</div>
</div>
</template>
<script setup lang="ts">
import { useRouter } from 'vue-router'
const router = useRouter()
const goHome = () => {
router.push('/')
}
</script>
<style scoped lang="scss">
.not-found {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f2f5;
.content {
text-align: center;
h1 {
font-size: 120px;
color: #409eff;
margin-bottom: 20px;
}
p {
font-size: 24px;
color: #666;
margin-bottom: 30px;
}
}
}
</style>