32 lines
459 B
Vue
32 lines
459 B
Vue
<template>
|
|
<div class="not-found">
|
|
<h1>404 - 页面还没做</h1>
|
|
<p>Sorry, Yemian has not been zuoed.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style scoped>
|
|
.not-found {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 80vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.not-found h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.not-found p {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
</style>
|