oralVideo.js 722 B

1234567891011121314151617181920212223242526
  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from "@/layout";
  3. const oralVideoRouter = {
  4. path: "/oralVideo",
  5. component: Layout,
  6. redirect: "/oralVideo/oralVideoIndex",
  7. name: "oralVideo",
  8. meta: { title: "口播视频管理", icon: "el-icon-video-camera-solid" },
  9. children: [
  10. {
  11. path: "oralVideoIndex",
  12. component: () => import("@/views/oral-video/index.vue"),
  13. name: "oralVideoIndex",
  14. meta: { title: "口播视频列表" }
  15. },
  16. {
  17. path: "product",
  18. component: () => import("@/views/product/product.vue"),
  19. name: "oralVideoProduct",
  20. meta: { title: "商品列表" }
  21. }
  22. ]
  23. };
  24. export default oralVideoRouter;