add auto-imports.

This commit is contained in:
2023-01-11 02:04:48 +08:00
parent 5c34d3c5e7
commit 77378f80a0
32 changed files with 819 additions and 117 deletions

View File

@@ -7,6 +7,7 @@ const routes = [
component: Home,
children: [
{ path: "", component: Problems },
{ path: "/learn", component: () => import("./learn/index.vue") },
{
path: "problem/:problemID",
component: () => import("./oj/problem/detail.vue"),
@@ -41,9 +42,12 @@ const routes = [
path: "rank",
component: () => import("./oj/rank/list.vue"),
},
{
path: "/admin",
component: () => import("./admin/index.vue"),
},
],
},
{ path: "/admin", component: () => import("./admin/index.vue") },
]
export default routes