Skip to content

Commit

Permalink
feat(ui): add siteInit route
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Oct 28, 2024
1 parent a31aa76 commit 7cdd09c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ui/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ import { createRouter, createWebHistory } from "vue-router";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: "/",
name: "home",
children: [
{
path: "init",
name: "siteInit",
component: () => import("@/views/init/SiteInitView.vue")
},
],
},
{
path: "/:pathMatch(.*)",
name: "notFound",
Expand Down

0 comments on commit 7cdd09c

Please sign in to comment.