_staticRotuer.ts 348 B

12345678910111213141516
  1. import type { RouteRecordRaw } from "vue-router"
  2. export const staticRotuer: Array<RouteRecordRaw> = [
  3. {
  4. path: "/",
  5. children: [
  6. {
  7. path: "/demo/01",
  8. component: () => import("@/views/home.vue"),
  9. meta: {
  10. title: "DEMO",
  11. breadcrumbs: ["DEMO", "DEMO", "DEMO"],
  12. },
  13. },
  14. ],
  15. },
  16. ]