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/links.js

34 lines
944 B

export default {
path: "/resources/links/:node/",
meta: { requiresAuth: true, showBreadcrumb: true },
name: "links",
component: () => import("../components/layout/SimpleRouterViewLayout.vue"),
redirect: { name: "LinksList" },
children: [
{
name: "LinksList",
path: "",
component: () => import("../views/links/LinksList.vue"),
},
{
name: "CreateLink",
path: "create",
component: () => import("../views/links/LinksCreate.vue"),
},
{
name: "UpdateLink",
path: "edit/:id",
component: () => import("../views/links/LinksUpdate.vue"),
},
{
name: "CreateLinkCategory",
path: "create_link_category",
component: () => import("../views/links/LinksCategoryCreate.vue"),
},
{
name: "UpdateLinkCategory",
path: "update_link_category/:id",
component: () => import("../views/links/LinksCategoryUpdate.vue"),
},
],
}