Pass login page

This commit is contained in:
2025-07-24 18:45:38 +08:00
parent 31ac45026e
commit 5a24c31d43
5 changed files with 364 additions and 4 deletions

View File

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