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.
23 lines
577 B
23 lines
577 B
export default {
|
|
path: '/resources/terms-conditions',
|
|
meta: { requiresAuth: true },
|
|
name: 'TermsConditions',
|
|
component: () => import('../views/terms/TermsLayout.vue'),
|
|
children: [
|
|
{
|
|
name: 'TermsConditionsList',
|
|
path: '',
|
|
component: () => import('../views/terms/TermsList.vue')
|
|
},
|
|
{
|
|
name: 'TermsConditionsEdit',
|
|
path: 'edit',
|
|
component: () => import('../views/terms/TermsEdit.vue')
|
|
},
|
|
{
|
|
name: 'TermsConditionsView',
|
|
path: 'view',
|
|
component: () => import('../views/terms/Terms.vue')
|
|
}
|
|
]
|
|
}
|
|
|