33 lines
586 B
Vue
33 lines
586 B
Vue
<script setup>
|
||
import { useRouter } from 'vue-router'
|
||
|
||
const router = useRouter()
|
||
|
||
const goHome = () => {
|
||
router.push('/')
|
||
}
|
||
</script>
|
||
|
||
<template>
|
||
<div class="not-found-container">
|
||
<el-result
|
||
icon="error"
|
||
title="404"
|
||
sub-title="抱歉,您访问的页面不存在"
|
||
>
|
||
<template #extra>
|
||
<el-button type="primary" @click="goHome">返回首页</el-button>
|
||
</template>
|
||
</el-result>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.not-found-container {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
height: 80vh;
|
||
}
|
||
</style>
|