You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
702 B
30 lines
702 B
![]()
4 years ago
|
export default {
|
||
|
path: '/resources/messages',
|
||
|
meta: { requiresAuth: true },
|
||
|
name: 'messages',
|
||
|
component: () => import('../components/message/Layout.vue'),
|
||
|
redirect: { name: 'MessageList' },
|
||
|
children: [
|
||
|
{
|
||
|
name: 'MessageList',
|
||
|
path: '',
|
||
|
component: () => import('../views/message/List.vue')
|
||
|
},
|
||
|
{
|
||
|
name: 'MessageCreate',
|
||
|
path: 'new',
|
||
|
component: () => import('../views/message/Create.vue')
|
||
|
},
|
||
|
{
|
||
|
name: 'MessageUpdate',
|
||
|
path: ':id/edit',
|
||
|
component: () => import('../views/message/Update.vue')
|
||
|
},
|
||
|
{
|
||
|
name: 'MessageShow',
|
||
|
path: ':id',
|
||
|
component: () => import('../views/message/Show.vue')
|
||
|
}
|
||
|
]
|
||
|
};
|