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.
29 lines
790 B
29 lines
790 B
export default {
|
|
path: '/resources/course_categories',
|
|
meta: { requiresAuth: true },
|
|
name: 'course_categories',
|
|
component: () => import('../components/coursecategory/Layout.vue'),
|
|
redirect: { name: 'CourseCategoryList' },
|
|
children: [
|
|
{
|
|
name: 'CourseCategoryList',
|
|
path: '',
|
|
component: () => import('../views/coursecategory/List.vue')
|
|
},
|
|
{
|
|
name: 'CourseCategoryCreate',
|
|
path: 'new',
|
|
component: () => import('../views/coursecategory/Create.vue')
|
|
},
|
|
{
|
|
name: 'CourseCategoryUpdate',
|
|
path: ':id/edit',
|
|
component: () => import('../views/coursecategory/Update.vue')
|
|
},
|
|
{
|
|
name: 'CourseCategoryShow',
|
|
path: ':id',
|
|
component: () => import('../views/coursecategory/Show.vue')
|
|
}
|
|
]
|
|
};
|
|
|