59 lines
1.0 KiB
Vue
59 lines
1.0 KiB
Vue
<!--
|
|
* @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> |