yanjinhui
10 天以前 c5de0d98241f8c8349fa38851b77efcfc61e4d26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<script setup lang="ts">
import { propTypes } from '@/utils/propTypes'
import { computed, unref } from 'vue'
import { useRouter } from 'vue-router'
 
const { currentRoute } = useRouter()
 
const props = defineProps({
  permission: propTypes.string.def()
})
 
const currentPermission = computed(() => {
  return unref(currentRoute)?.meta?.permission || []
})
 
const hasPermission = computed(() => {
  const permission = unref(props.permission)
  if (!permission) {
    return true
  }
  return unref(currentPermission).includes(permission)
})
</script>
 
<template>
  <template v-if="hasPermission">
    <slot></slot>
  </template>
</template>