Added magic spell page

This commit is contained in:
2025-07-17 20:28:49 +08:00
parent 4e2a7ebbce
commit 651820e384
11 changed files with 254 additions and 84 deletions

View File

@@ -12,6 +12,11 @@ const router = createRouter({
path: '/captcha',
name: 'captcha',
component: () => import('../views/captcha.vue'),
},
{
path: '/spells/:word',
name: 'spells',
component: () => import('../views/spells.vue'),
}
],
})