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.
25 lines
665 B
25 lines
665 B
export default {
|
|
path: '/resources/ctoolintro/',
|
|
meta: { requiresAuth: true, showBreadcrumb: true },
|
|
name: 'ctoolintro',
|
|
component: () => import('../components/ctoolintro/Layout.vue'),
|
|
redirect: { name: 'ToolIntroList' },
|
|
children: [
|
|
{
|
|
name: 'ToolIntroCreate',
|
|
path: 'new/:courseTool',
|
|
component: () => import('../views/ctoolintro/Create.vue')
|
|
},
|
|
{
|
|
name: 'ToolIntroUpdate',
|
|
//path: ':id/edit',
|
|
path: 'edit',
|
|
component: () => import('../views/ctoolintro/Update.vue')
|
|
},
|
|
{
|
|
name: 'ToolIntroShow',
|
|
path: '',
|
|
component: () => import('../views/ctoolintro/Show.vue')
|
|
}
|
|
]
|
|
};
|
|
|