|
|
@@ -0,0 +1,19 @@
|
|
|
+/** When your routing table is too long, you can split it into small modules **/
|
|
|
+
|
|
|
+import Layout from "@/layout";
|
|
|
+
|
|
|
+const AiHotVideoListRouter = {
|
|
|
+ path: "/AiHotVideoList",
|
|
|
+ component: Layout,
|
|
|
+ redirect: "/AiHotVideoList/AiHotVideoListIndex",
|
|
|
+ meta: { title: "AI爆款视频", icon: "sidebar-icon12" },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: "AiHotVideoListIndex",
|
|
|
+ component: () => import("@/views/face-swap-video/AiHotVideoList"),
|
|
|
+ name: "AiHotVideoListIndex",
|
|
|
+ meta: { title: "AI爆款视频参考" }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+};
|
|
|
+export default AiHotVideoListRouter;
|