From 0666454f5d4d4b797ea26fa7ff6093c15745c81c Mon Sep 17 00:00:00 2001 From: BTMuli Date: Sat, 23 Dec 2023 21:23:34 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B1=20=E6=96=B0=E5=A2=9E=E5=90=8D?= =?UTF-8?q?=E7=89=87=E5=9B=BE=E9=89=B4=E4=B8=8E=E6=9D=90=E6=96=99=E5=9B=BE?= =?UTF-8?q?=E9=89=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/WIKI/Material.vue | 3 +++ src/pages/WIKI/Namecard.vue | 3 +++ src/router/modules/wiki.ts | 12 +++++++++++- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 src/pages/WIKI/Material.vue create mode 100644 src/pages/WIKI/Namecard.vue diff --git a/src/pages/WIKI/Material.vue b/src/pages/WIKI/Material.vue new file mode 100644 index 00000000..b408d804 --- /dev/null +++ b/src/pages/WIKI/Material.vue @@ -0,0 +1,3 @@ + diff --git a/src/pages/WIKI/Namecard.vue b/src/pages/WIKI/Namecard.vue new file mode 100644 index 00000000..ad3ed7fb --- /dev/null +++ b/src/pages/WIKI/Namecard.vue @@ -0,0 +1,3 @@ + diff --git a/src/router/modules/wiki.ts b/src/router/modules/wiki.ts index 4989003c..a901d440 100644 --- a/src/router/modules/wiki.ts +++ b/src/router/modules/wiki.ts @@ -1,7 +1,7 @@ /** * @file router/modules/wiki.ts * @description wiki 路由模块 - * @since Beta v0.3.8 + * @since Beta v0.3.9 */ const wikiRoutes = [ @@ -20,6 +20,16 @@ const wikiRoutes = [ name: "卡牌图鉴", component: async () => await import("../../pages/WIKI/GCG.vue"), }, + { + path: "/wiki/namecard", + name: "名片图鉴", + component: async () => await import("../../pages/WIKI/Namecard.vue"), + }, + { + path: "/wiki/material", + name: "材料图鉴", + component: async () => await import("../../pages/WIKI/Material.vue"), + }, { path: "/wiki/weapon", name: "武器图鉴",