diff options
Diffstat (limited to 'src/router/index.ts')
-rw-r--r-- | src/router/index.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/router/index.ts b/src/router/index.ts index 04828e4..99267f9 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -36,6 +36,11 @@ const routes: Array<RouteRecordRaw> = [ component: () => import(/* webpackChunkName: "registration" */ "../views/Registration.vue"), }, { + path: "/migration", + name: "migration", + component: () => import(/* webpackChunkName: "migration" */ "../views/Migration.vue"), + }, + { path: "/404:pathMatch(.*)", alias: "/:pathMatch(.*)", name: "not found", |