mirror of
https://github.com/Kisechan/Mainpage.git
synced 2025-07-09 14:47:18 +00:00
21 lines
354 B
Vue
21 lines
354 B
Vue
<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>
|