ForcePilot/web/src/views/EmptyView.vue

32 lines
459 B
Vue
Raw Normal View History

2024-07-14 16:42:38 +08:00
<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>