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

13 lines
389 B

<script lang="ts" setup>
import MdiOpenInNew from '~icons/mdi/open-in-new'
import { useUIPermission } from '#imports'
const { isUIAllowed } = useUIPermission()
</script>
<template>
<div v-t="['c:view:share']" class="nc-sidebar-right-item hover:after:bg-secondary/75 group">
<MdiOpenInNew class="group-hover:(!text-white)" />
{{ $t('activity.shareView') }}
</div>
</template>