import type { RouteRecordRaw } from "vue-router" export const staticRotuer: Array = [ { path: "/", children: [ { path: "/demo/01", component: () => import("@/views/home.vue"), meta: { title: "DEMO", breadcrumbs: ["DEMO", "DEMO", "DEMO"], }, }, ], }, ]