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