mirror of https://github.com/nocodb/nocodb
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.
24 lines
679 B
24 lines
679 B
<script setup lang="ts"> |
|
import { useRoles } from '#imports' |
|
|
|
const { isUIAllowed } = useRoles() |
|
</script> |
|
|
|
<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>
|
|
|