Create route for status show

This commit is contained in:
Angelina Filippova 2020-04-29 23:40:22 +03:00
parent 99ce098c37
commit cd09e09431

View file

@ -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 }
]