feat: 调整项目目录结构

This commit is contained in:
DEV_DSW
2025-09-24 17:15:02 +08:00
parent d9b59db465
commit bf83e95b7b
66 changed files with 3941 additions and 3855 deletions

View File

@@ -1,26 +0,0 @@
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(import.meta.env.BASE_URL),
routes,
});
export default router;