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.
21 lines
491 B
21 lines
491 B
![]()
4 years ago
|
export default {
|
||
|
path: '/resources/usergroups',
|
||
|
meta: { requiresAuth: true },
|
||
|
name: 'usergroups',
|
||
|
component: () => import('../components/usergroup/Layout.vue'),
|
||
|
redirect: { name: 'UserGroupList' },
|
||
|
children: [
|
||
|
{
|
||
|
name: 'UserGroupList',
|
||
|
path: '',
|
||
|
component: () => import('../views/usergroup/List.vue')
|
||
|
},
|
||
|
{
|
||
|
name: 'UserGroupShow',
|
||
|
//path: ':id',
|
||
|
path: 'show',
|
||
|
component: () => import('../views/usergroup/Show.vue')
|
||
|
}
|
||
|
]
|
||
|
};
|