feat: 添加等级界面

This commit is contained in:
陈淳
2024-01-29 18:26:51 +08:00
parent fd78b2e3c3
commit 69a4de8e0e
4 changed files with 103 additions and 4 deletions

View File

@@ -113,6 +113,15 @@ const router = createRouter({
title: "每日签到",
},
},
{
name: "level",
path: "level",
component: () => import("../views/level/Index.vue"),
meta: {
title: "等级",
},
},
],
},
{ path: "/:pathMatch(.*)*", name: "NotFound", component: NotFound },