Files
happy-life-star/web-admin/src/views/NotFound.vue
T
2025-12-27 16:45:38 +08:00

46 lines
800 B
Vue

<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: var(--ls-bg);
.content {
text-align: center;
h1 {
font-size: 120px;
color: var(--ls-accent-orange);
margin-bottom: 20px;
}
p {
font-size: 24px;
color: rgba(226, 232, 240, 0.75);
margin-bottom: 30px;
}
}
}
</style>