This commit is contained in:
2025-03-01 21:30:49 +08:00
commit 04d22ee31b
29 changed files with 4477 additions and 0 deletions

14
src/views/AboutView.vue Normal file
View File

@ -0,0 +1,14 @@
<template>
<div class="about">
<h1>还没做好qwq</h1>
<p>正在学习中</p>
<router-link to="/">返回首页</router-link>
</div>
</template>
<style scoped>
.about {
text-align: center;
padding: 2rem;
}
</style>

20
src/views/HomeView.vue Normal file
View File

@ -0,0 +1,20 @@
<template>
<div class="home">
<h1>施工中</h1>
<p>这是一个由 DeepSeek 建立的使用 Vue 建立的网站实例</p>
<nav>
<router-link to="/about">关于</router-link>
</nav>
</div>
</template>
<style scoped>
.home {
text-align: center;
padding: 2rem;
}
nav a {
color: #42b983;
text-decoration: none;
}
</style>