init project

This commit is contained in:
2024-12-24 14:53:00 +08:00
commit f5025aa709
18 changed files with 1341 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<template>
<div class="not-found">
<h1>404</h1>
<p>抱歉页面不存在</p>
<router-link to="/">返回首页</router-link>
</div>
</template>
<script>
export default {
name: 'NotFound'
}
</script>
<style scoped>
.not-found {
padding: 40px;
text-align: center;
}
h1 {
font-size: 72px;
color: #666;
}
a {
color: #42b983;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>