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.
24 lines
644 B
24 lines
644 B
export default {
|
|
path: '/resources/ccalendarevent',
|
|
meta: { requiresAuth: true },
|
|
name: 'ccalendarevent',
|
|
redirect: { name: 'CCalendarEventList' },
|
|
component: () => import('../components/ccalendarevent/Layout.vue'),
|
|
children: [
|
|
{
|
|
name: 'CCalendarEventShow',
|
|
path: 'show',
|
|
component: () => import('../views/ccalendarevent/Show.vue')
|
|
},
|
|
{
|
|
name: 'CCalendarEventCreate',
|
|
path: 'new',
|
|
component: () => import('../views/ccalendarevent/Create.vue')
|
|
},
|
|
{
|
|
name: 'CCalendarEventList',
|
|
path: '',
|
|
component: () => import('../views/ccalendarevent/List.vue')
|
|
}
|
|
]
|
|
};
|
|
|