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.
30 lines
896 B
30 lines
896 B
<script setup lang="ts"> |
|
import { useRoute, useUIPermission } from '#imports' |
|
|
|
const route = useRoute() |
|
|
|
const showUserModal = $ref(false) |
|
|
|
const { isUIAllowed } = useUIPermission() |
|
</script> |
|
|
|
<template> |
|
<div class="flex items-center w-full pl-3 hover:(text-primary bg-primary bg-opacity-5)" @click="showUserModal = true"> |
|
<div |
|
v-if=" |
|
isUIAllowed('newUser') && |
|
route.name !== 'index' && |
|
route.name !== 'index-index-create' && |
|
route.name !== 'index-index-create-external' && |
|
route.name !== 'index-user-index' |
|
" |
|
> |
|
<div class="flex items-center space-x-1"> |
|
<MdiAccountPlusOutline class="mr-1 nc-share-base" /> |
|
<div>{{ $t('activity.inviteTeam') }}</div> |
|
</div> |
|
</div> |
|
|
|
<TabsAuthUserManagementUsersModal :key="showUserModal" :show="showUserModal" @closed="showUserModal = false" /> |
|
</div> |
|
</template>
|
|
|