Fix some shenanigans with routes

This commit is contained in:
Jesse Wierzbinski 2024-03-10 20:22:48 -10:00
parent 04dcaa94aa
commit 4755451404
No known key found for this signature in database
4 changed files with 16 additions and 15 deletions

View file

@ -1,3 +1,4 @@
import type { RouteRecordRaw } from "vue-router";
import indexVue from "./pages/index.vue";
import authorizeVue from "./pages/oauth/authorize.vue";
import registerIndexVue from "./pages/register/index.vue";
@ -8,4 +9,4 @@ export default [
{ path: "/oauth/authorize", component: authorizeVue },
{ path: "/register", component: registerIndexVue },
{ path: "/register/success", component: successVue },
];
] as RouteRecordRaw[];