Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/assets/vue/router/ccalendarevent.js

25 lines
758 B

export default {
path: "/resources/ccalendarevent",
meta: { requiresAuth: true },
name: "ccalendarevent",
redirect: { name: "CCalendarEventList" },
component: () => import("../components/ccalendarevent/CCalendarEventLayout.vue"),
children: [
{
name: "CCalendarEventShow",
path: "show",
component: () => import("../views/ccalendarevent/CCalendarEventShow.vue"),
},
{
name: "CCalendarEventCreate",
path: "new",
component: () => import("../views/ccalendarevent/CCalendarEventCreate.vue"),
},
{
name: "CCalendarEventList",
path: "",
component: () => import("../views/ccalendarevent/CCalendarEventList.vue"),
props: (route) => ({ type: route.query.type }),
},
],
}