feat: 更换应用框架为ElectronFofge

This commit is contained in:
duanshuwen
2025-10-12 14:12:29 +08:00
parent 02b85f3251
commit ebac04b786
67 changed files with 7935 additions and 6104 deletions

26
src/router/index.ts Normal file
View File

@@ -0,0 +1,26 @@
import { createRouter, createWebHistory } from "vue-router";
const routes = [
{
path: "/",
name: "Login",
component: () => import("@/views/login/index.vue"),
},
{
path: "/home",
name: "Home",
component: () => import("@/views/home/index.vue"),
},
{
path: "/about",
name: "About",
component: () => import("@/views/about/index.vue"),
},
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;