element admin 动态路由_vueelementadmin 如何改造成 动态获取路由菜单

vue-element-admin 如何改造成 动态获取路由菜单

本篇主要讲解 vue-element-admin 如何改造成 动态获取菜单

a5c308eea86a128d988692b0ab15948d.png

1.搭建vue-element-admin 项目

1.1 fork vue-element-admin 项目

第一步登录github 找到 vue-element-admin 项目  vue-element-admin github连接

fork 到自己的仓库  如下

c8fdb42bcb90c4ad9f2db8c5ea35933c.png

1.2 打开 码云导入fork后的项目

7f16faa1172575591f938f3629bd4208.png

8dd3a3abf32ddf192fa2de1b22087602.png

1.3 复制码云的连接 git clone

e3ff529666a4af3aafd461ea966a723a.png

我选择的分支是 i18n

915a5d5c6d1544a0fde9070c8f5fd09c.png

clone 下代码 后 执行 npm install

daec9f98adb9ee4d0182a9392a7ee7d5.png

执行 npm run dev

55f7c58f70dc1e8359e90ae011889082.png

登录成功后 如下

484cd9fd8139bdd421738a23e3d3cf1e.png

至此 vue-element-admin 就搭建好了,下面来做一些修整 把自带的 所有的 菜单都去掉

2.删除 自带的路由菜单

打开 router/index.js   需要 分别需要删除 constantRouters  和 asyncRoutes 以及 modules 中部分的路由

  • 将constantRouters 中的 documentation 和 guide 路由注释掉或者删掉a0abcd8c2f616b9fb373fca4ff0bda6b.png

  • 第二步将  asyncRoutes 中的 全部删了,只留下 permission 并且做一些修改 作为我们后面测试用,如下:

export const asyncRoutes = [
   {
        path: '/permission',
        component: Layout,
        redirect: '/permission/page',
        alwaysShow: true, // will always show the root menu
        name: 'Permission',
        meta: {
            title: '系统设置',
            icon: 'lock',
            roles: ['admin', 'editor'] // you can set roles in root nav
        },
        children: [
            {
                path: 'page',
                component: () => import('@/views/permission/page'),
                name: 'PagePermission',
                meta: {
                    icon: 'lock',
                    title: '用户管理',
                    roles: ['admin'] // or you can only set roles in sub nav
                }
            },
            {
                path: 'directive',
                component: () => import('@/views/permission/directive'),
                name: 'DirectivePermission',
                meta: {
                    icon: 'lock',
                    title: '角色管理'
                    // if do not set roles, means: this page does not require permission
                }
            },
            {
                path: 'role',
                component: () => import('@/views/permission/role'),
                name: 'RolePermission',
                meta: {
                    icon: 'lock',
                    title: '菜单',
                    roles: ['admin']
                }
            }
        ]
    },
    //   {
    //     path: '/icon',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/icons/index'),
    //         name: 'Icons',
    //         meta: { title: 'icons', icon: 'icon', noCache: true }
    //       }
    //     ]
    //   },
    /** when your routing map is too long, you can split it into small modules **/
    //   componentsRouter,
    //   chartsRouter,
    //   nestedRouter,
    //   tableRouter,
    //   {
    //     path: '/example',
    //     component: Layout,
    //     redirect: '/example/list',
    //     name: 'Example',
    //     meta: {
    //       title: 'example',
    //       icon: 'el-icon-s-help'
    //     },
    //     children: [
    //       {
    //         path: 'create',
    //         component: () => import('@/views/example/create'),
    //         name: 'CreateArticle',
    //         meta: { title: 'createArticle', icon: 'edit' }
    //       },
    //       {
    //         path: 'edit/:id(\\d+)',
    //         component: () => import('@/views/example/edit'),
    //         name: 'EditArticle',
    //         meta: { title: 'editArticle', noCache: true, activeMenu: '/example/list' },
    //         hidden: true
    //       },
    //       {
    //         path: 'list',
    //         component: () => import('@/views/example/list'),
    //         name: 'ArticleList',
    //         meta: { title: 'articleList', icon: 'list' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/tab',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/tab/index'),
    //         name: 'Tab',
    //         meta: { title: 'tab', icon: 'tab' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/error',
    //     component: Layout,
    //     redirect: 'noRedirect',
    //     name: 'ErrorPages',
    //     meta: {
    //       title: 'errorPages',
    //       icon: '404'
    //     },
    //     children: [
    //       {
    //         path: '401',
    //         component: () => import('@/views/error-page/401'),
    //         name: 'Page401',
    //         meta: { title: 'page401', noCache: true }
    //       },
    //       {
    //         path: '404',
    //         component: () => import('@/views/error-page/404'),
    //         name: 'Page404',
    //         meta: { title: 'page404', noCache: true }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/error-log',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'log',
    //         component: () => import('@/views/error-log/index'),
    //         name: 'ErrorLog',
    //         meta: { title: 'errorLog', icon: 'bug' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/excel',
    //     component: Layout,
    //     redirect: '/excel/export-excel',
    //     name: 'Excel',
    //     meta: {
    //       title: 'excel',
    //       icon: 'excel'
    //     },
    //     children: [
    //       {
    //         path: 'export-excel',
    //         component: () => import('@/views/excel/export-excel'),
    //         name: 'ExportExcel',
    //         meta: { title: 'exportExcel' }
    //       },
    //       {
    //         path: 'export-selected-excel',
    //         component: () => import('@/views/excel/select-excel'),
    //         name: 'SelectExcel',
    //         meta: { title: 'selectExcel' }
    //       },
    //       {
    //         path: 'export-merge-header',
    //         component: () => import('@/views/excel/merge-header'),
    //         name: 'MergeHeader',
    //         meta: { title: 'mergeHeader' }
    //       },
    //       {
    //         path: 'upload-excel',
    //         component: () => import('@/views/excel/upload-excel'),
    //         name: 'UploadExcel',
    //         meta: { title: 'uploadExcel' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/zip',
    //     component: Layout,
    //     redirect: '/zip/download',
    //     alwaysShow: true,
    //     name: 'Zip',
    //     meta: { title: 'zip', icon: 'zip' },
    //     children: [
    //       {
    //         path: 'download',
    //         component: () => import('@/views/zip/index'),
    //         name: 'ExportZip',
    //         meta: { title: 'exportZip' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/pdf',
    //     component: Layout,
    //     redirect: '/pdf/index',
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/pdf/index'),
    //         name: 'PDF',
    //         meta: { title: 'pdf', icon: 'pdf' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/pdf/download',
    //     component: () => import('@/views/pdf/download'),
    //     hidden: true
    //   },
    //   {
    //     path: '/theme',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/theme/index'),
    //         name: 'Theme',
    //         meta: { title: 'theme', icon: 'theme' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/clipboard',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/clipboard/index'),
    //         name: 'ClipboardDemo',
    //         meta: { title: 'clipboardDemo', icon: 'clipboard' }
    //       }
    //     ]
    //   },
    //   {
    //     path: '/i18n',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'index',
    //         component: () => import('@/views/i18n-demo/index'),
    //         name: 'I18n',
    //         meta: { title: 'i18n', icon: 'international' }
    //       }
    //     ]
    //   },
    //   {
    //     path: 'external-link',
    //     component: Layout,
    //     children: [
    //       {
    //         path: 'https://github.com/PanJiaChen/vue-element-admin',
    //         meta: { title: 'externalLink', icon: 'link' }
    //       }
    //     ]
    //   },
    // 404 page must be placed at the end !!!
    { path: '*', redirect: '/404', hidden: true }
]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值