| 12345678910111213141516171819 |
- /** When your routing table is too long, you can split it into small modules **/
- import Layout from "@/layout";
- const AIAssetSearchRouter = {
- path: "/AIAssetSearch",
- component: Layout,
- redirect: "/AIAssetSearch/AIAssetSearchIndex",
- meta: { title: "AI素材搜索管理", icon: "sidebar-icon1" },
- children: [
- {
- path: "AIAssetSearchIndex",
- component: () => import("@/views/ai-asset-finder/index"),
- name: "AIAssetSearchIndex",
- meta: { title: "AI素材搜索" }
- }
- ]
- };
- export default AIAssetSearchRouter;
|