add class pk
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-01-03 21:52:09 +08:00
parent 577538f689
commit 078e643987
7 changed files with 729 additions and 0 deletions

View File

@@ -66,6 +66,24 @@ export const ojs: RouteRecordRaw = {
path: "rank",
component: () => import("oj/rank/list.vue"),
},
{
path: "class",
children: [
{
path: "rank",
component: () => import("oj/class/rank.vue"),
},
{
path: "pk",
component: () => import("oj/class/pk.vue"),
},
{
path: "my-rank",
component: () => import("oj/class/my-rank.vue"),
meta: { requiresAuth: true },
},
],
},
{
path: "announcement",
component: () => import("oj/announcement/list.vue"),