+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ 查看
+
+
+
+
+
+
diff --git a/src/router/routes.ts b/src/router/routes.ts
index 180a7efe..39b90de6 100644
--- a/src/router/routes.ts
+++ b/src/router/routes.ts
@@ -1,4 +1,5 @@
// 信息展示
+import GCG from "../pages/GCG.vue";
import Home from "../pages/Home.vue";
import News from "../pages/News.vue";
// 数据交互
@@ -12,25 +13,30 @@ const routes = [
name: "首页",
component: Home,
},
- {
- path: "/home",
- redirect: "/",
- },
{
path: "/achievements",
name: "成就",
component: Achievements,
},
- {
- path: "/news",
- name: "咨讯",
- component: News,
- },
{
path: "/config",
name: "设置",
component: Config,
},
+ {
+ path: "/GCG",
+ name: "卡牌",
+ component: GCG,
+ },
+ {
+ path: "/home",
+ redirect: "/",
+ },
+ {
+ path: "/news",
+ name: "咨讯",
+ component: News,
+ },
];
export default routes;