Added first path to start view

This commit is contained in:
Matthew Aaron Raymer
2022-11-27 12:17:54 +08:00
parent c1acee63bf
commit 813a874d12

View File

@@ -16,6 +16,12 @@ const routes: Array<RouteRecordRaw> = [
component: () =>
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
},
{
path: "/start",
name: "start",
component: () =>
import(/* webpackChunkName: "start" */ "../views/StartView.vue"),
},
];
const router = createRouter({