aiTools.js 713 B

1234567891011121314151617181920212223242526
  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from "@/layout";
  3. const aiToolsRouter = {
  4. path: "/ai",
  5. component: Layout,
  6. redirect: "/ai/cutVideo",
  7. name: "AI工具",
  8. meta: { title: "AI工具", icon: "el-icon-s-cooperation" },
  9. children: [
  10. {
  11. path: "cutVideo",
  12. component: () => import("@/views/ai-tools/cut-video"),
  13. name: "走秀视频剪辑",
  14. meta: { title: "走秀视频剪辑" }
  15. },
  16. // {
  17. // path: "faceSwapVideo",
  18. // component: () => import("@/views/ai-tools/video-face-swap"),
  19. // name: "视频换脸",
  20. // meta: { title: "视频换脸" }
  21. // }
  22. ]
  23. };
  24. export default aiToolsRouter;