diff options
Diffstat (limited to 'app/src/router')
-rw-r--r-- | app/src/router/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/router/index.ts b/app/src/router/index.ts index 86cf89f..8c87048 100644 --- a/app/src/router/index.ts +++ b/app/src/router/index.ts @@ -3,8 +3,9 @@ import { RouteRecordRaw } from "vue-router"; import HomePage from "../views/HomePage.vue"; const routes: Array<RouteRecordRaw> = [ + { path: "/", redirect: "/home" }, { - path: "/", + path: "/home", component: HomePage, name: "HomePage", }, |