🌱 新增名片图鉴与材料图鉴

This commit is contained in:
BTMuli
2023-12-23 21:23:34 +08:00
parent 5435e75ca2
commit 0666454f5d
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
<template>
<h1>WIKI-Material</h1>
</template>

View File

@@ -0,0 +1,3 @@
<template>
<h1>WIKI-Namecard</h1>
</template>

View File

@@ -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: "武器图鉴",