多维表格
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.

20 lines
524 B

<template>
<template v-if="$route.params.nestedPage === 'password-reset'">
<LazyAccountResetPassword />
</template>
<template v-else-if="$route.params.nestedPage === 'settings' || !isUIAllowed('superAdminUserManagement')">
<LazyAccountSignupSettings />
</template>
<template v-else-if="isUIAllowed('superAdminUserManagement')">
<LazyAccountUserList />
</template>
</template>
<script setup lang="ts">
import { useUIPermission } from '#imports'
const { isUIAllowed } = useUIPermission()
</script>