This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
appsketch-works-asw-gui/src/views/404.vue
2024-07-16 14:06:02 +08:00

29 lines
455 B
Vue

<template>
<div id="notFound">
<h1>404</h1>
<p>{{$t('overall.notFound')}}</p>
</div>
</template>
<script setup></script>
<style lang="scss" scoped>
#notFound {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
h1 {
font-size: 72px;
color: var(--text);
margin-bottom: 20px;
}
p {
font-size: 46px;
color: var(--text_secondary);
}
}
</style>