2024-05-29 14:06:59 +07:00
|
|
|
import type { RouteRecordRaw } from "vue-router";
|
2023-09-06 14:51:44 +07:00
|
|
|
|
2024-06-24 13:07:27 +07:00
|
|
|
const route: RouteRecordRaw[] = [
|
2023-09-06 14:51:44 +07:00
|
|
|
{
|
2024-05-29 14:06:59 +07:00
|
|
|
path: "/manual/:name",
|
|
|
|
|
name: "Manual",
|
|
|
|
|
component: () => import("@/modules/01_manual/MainPage.vue"),
|
2023-09-08 15:07:34 +07:00
|
|
|
},
|
2024-06-24 13:07:27 +07:00
|
|
|
{
|
|
|
|
|
path: "/:name",
|
|
|
|
|
name: "Pages",
|
|
|
|
|
component: () => import("@/modules/02_pages/MainPage.vue"),
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default route;
|