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

24
src/App.vue Normal file
View File

@ -0,0 +1,24 @@
<template>
<header>
<nav>
<router-link to="/">首页</router-link> |
<router-link to="/about">关于</router-link>
</nav>
</header>
<router-view />
</template>
<style>
#app {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
font-family: Arial, sans-serif;
}
nav {
margin-bottom: 2rem;
}
a {
color: #42b983;
}
</style>