Skip to content

Commit

Permalink
feat(ui): add login and register routes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Oct 28, 2024
1 parent 9bd10aa commit 0643090
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ui/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ const router = createRouter({
name: "siteInit",
component: () => import("@/views/init/SiteInitView.vue")
},
{
path: "login",
name: "login",
component: () => import("@/views/auth/LoginView.vue")
},
{
path: "register",
name: "register",
component: () => import("@/views/auth/RegisterView.vue")
}
],
},
{
Expand Down

0 comments on commit 0643090

Please sign in to comment.