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