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.
19 lines
451 B
19 lines
451 B
|
2 years ago
|
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')
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|