Skip to content
Snippets Groups Projects
Commit 8ef35b4f authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Create route for Reports

parent cd63ab1a
Branches
Tags
1 merge request!11Add ability to read reports
......@@ -64,7 +64,8 @@ export default {
clipboardDemo: 'Clipboard',
i18n: 'I18n',
externalLink: 'External Link',
users: 'Users'
users: 'Users',
reports: 'Reports'
},
navbar: {
logOut: 'Log Out',
......
......@@ -64,5 +64,17 @@ export const asyncRouterMap = [
}
]
},
{
path: '/reports',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/reports/index'),
name: 'Reports',
meta: { title: 'reports', icon: 'documentation', noCache: true }
}
]
},
{ path: '*', redirect: '/404', hidden: true }
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment