| 1234567891011121314151617181920212223242526 |
- /** When your routing table is too long, you can split it into small modules **/
- import Layout from "@/layout";
- const oralVideoRouter = {
- path: "/oralVideo",
- component: Layout,
- redirect: "/oralVideo/oralVideoIndex",
- name: "oralVideo",
- meta: { title: "口播视频管理", icon: "el-icon-video-camera-solid" },
- children: [
- {
- path: "oralVideoIndex",
- component: () => import("@/views/oral-video/index.vue"),
- name: "oralVideoIndex",
- meta: { title: "口播视频列表" }
- },
- {
- path: "product",
- component: () => import("@/views/product/product.vue"),
- name: "oralVideoProduct",
- meta: { title: "商品列表" }
- }
- ]
- };
- export default oralVideoRouter;
|