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.
20 lines
650 B
20 lines
650 B
export default {
|
|
path: "/admin",
|
|
name: "admin",
|
|
meta: { requiresAuth: true, showBreadcrumb: true },
|
|
component: () => import("../components/admin/AdminLayout.vue"),
|
|
children: [
|
|
{
|
|
path: "",
|
|
name: "AdminIndex",
|
|
meta: { requiresAdmin: true, requiresSessionAdmin: true, showBreadcrumb: false },
|
|
component: () => import("../views/admin/AdminIndex.vue"),
|
|
},
|
|
{
|
|
name: "AdminConfigurationColors",
|
|
path: "configuration/colors",
|
|
meta: { requiresAdmin: true, requiresSessionAdmin: true, showBreadcrumb: true },
|
|
component: () => import("../views/admin/AdminConfigureColors.vue"),
|
|
},
|
|
],
|
|
}
|
|
|