♻️ 首页日历组件添加wiki跳转,移除wiki子窗口

This commit is contained in:
目棃
2024-01-16 12:05:27 +08:00
parent b8d823298e
commit 7cc27cce96
7 changed files with 62 additions and 466 deletions

View File

@@ -1,7 +1,7 @@
/**
* @file router/modules/wiki.ts
* @description wiki 路由模块
* @since Beta v0.3.9
* @since Beta v0.4.1
*/
const wikiRoutes = [
@@ -11,7 +11,7 @@ const wikiRoutes = [
component: async () => await import("../../pages/WIKI/Abyss.vue"),
},
{
path: "/wiki/character",
path: "/wiki/character/:id",
name: "角色图鉴",
component: async () => await import("../../pages/WIKI/Character.vue"),
},
@@ -31,25 +31,15 @@ const wikiRoutes = [
component: async () => await import("../../pages/WIKI/Material.vue"),
},
{
path: "/wiki/weapon",
path: "/wiki/weapon/:id",
name: "武器图鉴",
component: async () => await import("../../pages/WIKI/Weapon.vue"),
},
{
path: "/wiki/detail/character/:id",
name: "角色详情",
component: async () => await import("../../views/tw-character.vue"),
},
{
path: "/wiki/detail/GCG/:id",
name: "卡牌详情",
component: async () => await import("../../views/tw-gcg.vue"),
},
{
path: "/wiki/detail/weapon/:id",
name: "武器详情",
component: async () => await import("../../views/tw-weapon.vue"),
},
];
export default wikiRoutes;