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.
34 lines
926 B
34 lines
926 B
export default {
|
|
path: "/resources/glossary/:node/",
|
|
meta: { requiresAuth: true, showBreadcrumb: true },
|
|
name: "glossary",
|
|
component: () => import("../components/layout/SimpleRouterViewLayout.vue"),
|
|
redirect: { name: "GlossaryList" },
|
|
children: [
|
|
{
|
|
name: "GlossaryList",
|
|
path: "",
|
|
component: () => import("../views/glossary/GlossaryList.vue"),
|
|
},
|
|
{
|
|
name: "CreateTerm",
|
|
path: "create",
|
|
component: () => import("../views/glossary/GlossaryTermCreate.vue"),
|
|
},
|
|
{
|
|
name: "UpdateTerm",
|
|
path: "edit/:id",
|
|
component: () => import("../views/glossary/GlossaryTermUpdate.vue"),
|
|
},
|
|
{
|
|
name: "ImportGlossary",
|
|
path: "",
|
|
component: () => import("../views/glossary/GlossaryImport.vue"),
|
|
},
|
|
{
|
|
name: "ExportGlossary",
|
|
path: "",
|
|
component: () => import("../views/glossary/GlossaryExport.vue"),
|
|
},
|
|
],
|
|
}
|
|
|