import Vue from 'vue' import VueRouter, { RouteConfig } from 'vue-router' /* Layout */ import Layout from '@/layout/index.vue' /* Router modules */ import tableRouter from './modules/table' import systemRoutes from '@/router/modules/system' Vue.use(VueRouter) /* Note: sub-menu only appear when children.length>=1 Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html */ /* name:'router-name' the name field is required when using , it should also match its component's name property detail see : https://vuejs.org/v2/guide/components-dynamic-async.html#keep-alive-with-Dynamic-Components redirect: if set to 'noredirect', no redirect action will be trigger when clicking the breadcrumb meta: { roles: ['admin', 'editor'] will control the page roles (allow setting multiple roles) permissions: ['app:read'] will control the page permissions (allow setting multiple permissions) title: 'title' the name showed in subMenu and breadcrumb (recommend set) icon: 'svg-name' the icon showed in the sidebar hidden: true if true, this route will not show in the sidebar (default is false) alwaysShow: true if true, will always show the root menu (default is false) if false, hide the root menu when has less or equal than one children route breadcrumb: false if false, the item will be hidden in breadcrumb (default is true) noCache: true if true, the page will not be cached (default is false) affix: true if true, the tag will affix in the tags-view activeMenu: '/example/list' if set path, the sidebar will highlight the path you set } */ /** ConstantRoutes a base page that does not have permission requirements all roles can be accessed */ export const constantRoutes: RouteConfig[] = [ { path: '/redirect', component: Layout, meta: { hidden: true }, children: [ { path: '/redirect/:path(.*)', component: () => import(/* webpackChunkName: "redirect" */ '@/views/redirect/index.vue') } ] }, { path: '/login', component: () => import(/* webpackChunkName: "login" */ '@/views/login/index.vue'), meta: { hidden: true } }, { path: '/auth-redirect', component: () => import(/* webpackChunkName: "auth-redirect" */ '@/views/login/auth-redirect.vue'), meta: { hidden: true } }, { path: '/404', component: () => import(/* webpackChunkName: "404" */ '@/views/error-page/404.vue'), meta: { hidden: true } }, { path: '/401', component: () => import(/* webpackChunkName: "401" */ '@/views/error-page/401.vue'), meta: { hidden: true } }, { path: '/', component: Layout, redirect: '/dashboard', children: [ { path: 'dashboard', component: () => import(/* webpackChunkName: "dashboard" */ '@/views/dashboard/index.vue'), name: 'Dashboard', meta: { title: 'dashboard', icon: 'dashboard', affix: true } } ] }, { path: '/profile', component: Layout, redirect: '/profile/index', meta: { hidden: true }, children: [ { path: 'index', component: () => import(/* webpackChunkName: "profile" */ '@/views/profile/index.vue'), name: 'Profile', meta: { title: 'profile', icon: 'user', noCache: true } } ] } ] /** * asyncRoutes * the routes that need to be dynamically loaded based on user roles */ export const asyncRoutes: RouteConfig[] = [ systemRoutes, { path: '/article', component: Layout, redirect: '/article/list', meta: { title: 'article', icon: 'list', alwaysShow: true }, children: [ { path: 'create', component: () => import(/* webpackChunkName: "example-create" */ '@/views/article/create.vue'), name: 'CreateArticle', meta: { title: 'createArticle', icon: 'edit' } }, { path: 'edit/:id(\\d+)', component: () => import(/* webpackChunkName: "example-edit" */ '@/views/article/edit.vue'), name: 'EditArticle', meta: { title: 'editArticle', noCache: true, activeMenu: '/article/list', hidden: true } }, { path: 'list', component: () => import(/* webpackChunkName: "example-list" */ '@/views/article/list.vue'), name: 'ArticleList', meta: { title: 'articleList', icon: 'list' } } ] }, { path: '/permission', component: Layout, redirect: '/permission/directive1', meta: { title: 'permission', icon: 'lock', alwaysShow: true // will always show the root menu }, children: [ { path: 'page', component: () => import(/* webpackChunkName: "permission-page" */ '@/views/permission/page.vue'), name: 'PagePermission', meta: { title: 'pagePermission', roles: ['admin'] // or you can only set roles in sub nav } }, { path: 'directive', component: () => import(/* webpackChunkName: "permission-directive" */ '@/views/permission/directive.vue'), name: 'DirectivePermission', meta: { title: 'directivePermission', permissions: ['app:update'] } } ] }, tableRouter, { path: '/example', component: Layout, redirect: '/example/list', meta: { title: 'example', icon: 'example' }, children: [ { path: 'form', component: () => import(/* webpackChunkName: "permission-role" */ '@/views/form/index.vue'), name: 'Form', meta: { title: 'form', roles: ['admin'] } } ] }, { path: '/tab', component: Layout, children: [ { path: 'index', component: () => import(/* webpackChunkName: "tab" */ '@/views/tab/index.vue'), name: 'Tab', meta: { title: 'tab', icon: 'tab' } } ] }, { path: '/error', component: Layout, redirect: 'noredirect', meta: { title: 'errorPages', icon: '404' }, children: [ { path: '401', component: () => import(/* webpackChunkName: "error-page-401" */ '@/views/error-page/401.vue'), name: 'Page401', meta: { title: 'page401', noCache: true } }, { path: '404', component: () => import(/* webpackChunkName: "error-page-404" */ '@/views/error-page/404.vue'), name: 'Page404', meta: { title: 'page404', noCache: true } } ] }, { path: '/error-log', component: Layout, redirect: 'noredirect', children: [ { path: 'log', component: () => import(/* webpackChunkName: "error-log" */ '@/views/error-log/index.vue'), name: 'ErrorLog', meta: { title: 'errorLog', icon: 'bug' } } ] }, { path: '*', redirect: '/404', meta: { hidden: true } } ] const createRouter = () => new VueRouter({ // mode: 'history', // Disabled due to Github Pages doesn't support this, enable this if you need. scrollBehavior: (to, from, savedPosition) => { if (savedPosition) { return savedPosition } else { return { x: 0, y: 0 } } }, base: process.env.BASE_URL, routes: constantRoutes }) const router = createRouter() // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465 export function resetRouter() { const newRouter = createRouter(); (router as any).matcher = (newRouter as any).matcher // reset router } export default router