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.
|
|
|
<script setup lang="ts">
|
|
|
|
import { useUIPermission } from '#imports'
|
|
|
|
|
|
|
|
const { isUIAllowed } = useUIPermission()
|
|
|
|
</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>
|