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

Create route for status show

parent 99ce098c
No related branches found
No related tags found
No related merge requests found
......@@ -172,5 +172,17 @@ export const asyncRouterMap = [
],
hidden: true
},
{
path: '/statuses/:id',
component: Layout,
children: [
{
path: '',
name: 'StatusShow',
component: () => import('@/views/statuses/show')
}
],
hidden: true
},
{ path: '*', redirect: '/404', hidden: true }
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment