feat:UI及部分后端

This commit is contained in:
Tianpao
2025-09-13 21:05:14 +08:00
parent d32768afea
commit c61563c484
29 changed files with 2952 additions and 237 deletions

24
front/src/router/index.ts Normal file
View File

@@ -0,0 +1,24 @@
import { createRouter, createWebHistory } from "vue-router";
import Main from "../component/Main.vue";
import Setting from "../component/Setting.vue";
import About from "../component/About.vue";
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: "/",
component: Main,
},
{
path: "/setting",
component: Setting
},{
path: "/about",
component: About
}
]
})
export default router