feat: 新增定时任务功能

This commit is contained in:
duanshuwen
2026-04-11 23:17:54 +08:00
parent 37ed157e4a
commit 67808a459e
25 changed files with 4149 additions and 22 deletions

View File

@@ -35,6 +35,18 @@ const routes = [
name: "Skills",
meta: { requiresAuth: true },
},
{
path: "/skills",
component: () => import("@src/pages/skills/index.vue"),
name: "Skills",
meta: { requiresAuth: true },
},
{
path: "/cron",
component: () => import("@src/pages/cron/index.vue"),
name: "Cron",
meta: { requiresAuth: true },
},
{
path: "/setting",
component: () => import("@src/pages/setting/index.vue"),