25 lines
458 B
Vue
25 lines
458 B
Vue
|
|
<template>
|
||
|
|
<div class="page-404">
|
||
|
|
<img src="/static/image/page/404/cover@2x.png">
|
||
|
|
<el-button class="d2-mt" @click="$router.replace({ path: '/' })">
|
||
|
|
返回首页
|
||
|
|
</el-button>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.page-404 {
|
||
|
|
background-color: #555555;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
flex-direction: column;
|
||
|
|
img {
|
||
|
|
width: 196px;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|