|
|
|
@ -5,18 +5,20 @@ const { isUIAllowed } = useUIPermission()
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<template |
|
|
|
|
v-if=" |
|
|
|
|
$route.params.nestedPage === 'password-reset' || |
|
|
|
|
(!isUIAllowed('superAdminUserManagement') && !isUIAllowed('superAdminAppSettings')) |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
|
<LazyAccountResetPassword /> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="$route.params.nestedPage === 'settings'"> |
|
|
|
|
<LazyAccountSignupSettings /> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="isUIAllowed('superAdminUserManagement')"> |
|
|
|
|
<LazyAccountUserList /> |
|
|
|
|
</template> |
|
|
|
|
<div class="h-full overflow-y-scroll scrollbar-thin-dull pt-2"> |
|
|
|
|
<template |
|
|
|
|
v-if=" |
|
|
|
|
$route.params.nestedPage === 'password-reset' || |
|
|
|
|
(!isUIAllowed('superAdminUserManagement') && !isUIAllowed('superAdminAppSettings')) |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
|
<LazyAccountResetPassword /> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="$route.params.nestedPage === 'settings'"> |
|
|
|
|
<LazyAccountSignupSettings /> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="isUIAllowed('superAdminUserManagement')"> |
|
|
|
|
<LazyAccountUserList /> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|