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 { iconMap } from '#imports'
|
|
|
|
|
|
|
|
const { isUIAllowed } = useUIPermission()
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
const toggleDialog = inject(ToggleDialogInj, () => {})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-if="isUIAllowed('settings')"
|
|
|
|
class="flex items-center w-full pl-3 hover:(text-primary bg-primary bg-opacity-5)"
|
|
|
|
@click="toggleDialog(true)"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
<div class="flex items-center space-x-1">
|
|
|
|
<component :is="iconMap.users" class="mr-1 nc-new-base" />
|
|
|
|
<div>{{ t('title.teamAndSettings') }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|