This commit is contained in:
2025-06-12 19:52:55 +08:00
parent d7e6b1f5e6
commit 1ee2c6a4b1
3 changed files with 36 additions and 6 deletions
+33
View File
@@ -0,0 +1,33 @@
<template>
<div class="error-page err-404 page">
<div class="container">
<div class="error-container">
<div class="error-info">
<h1>404</h1>
<p>It seems that the page you are looking for no longer exists.<br>Please contact our <a href="#">help center</a> or go to the <RouterLink to="/home">homepage</RouterLink>.</p>
</div>
<div class="error-image"></div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'notfound',
data(){
return{
}
}
}
</script>
<style scoped>
.page {
font-size: 14px;
width: 100%;
height: 100%;
min-height: 100vh;
}
</style>