保存进度!

This commit is contained in:
2023-02-04 23:39:29 +08:00
parent e676e98a6e
commit c6e2d0ba06
9 changed files with 86 additions and 14 deletions

View File

@@ -0,0 +1,59 @@
<!--
* @Author: Kane
* @Date: 2023-02-04 22:28:13
* @LastEditors: Kane
* @LastEditTime: 2023-02-04 23:36:48
* @FilePath: /IT/src/views/ErrorPage.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<el-scrollbar style="height:100vh;width:100vw;">
<div class="container">
<img src="../assets/skull.png" />
<span>妖秀啊</span>
</div>
</el-scrollbar>
</template>
<script>
export default {
name: "ErrorPage",
setup()
{
},
};
</script>
<style scoped>
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: top;
}
.container img {
margin: 30px auto 0px auto;
width: 400px;
height: 400px;
}
.container span {
display: block;
margin: 15px auto 0 auto;
font-family: "rgaqsya";
font-size: 5em;
color: grey;
}
</style>
<style>
@font-face {
font-family: "rgaqsay";
src: url("../assets/fonts/FZSJ-RUGAQSAY.TTF");
}
</style>