Newer
Older
jh-business-system / src / components / Auth / index.vue
dutingting 29 days ago 270 bytes Initial commit: 项目初始化
<script lang="ts" setup name="Auth">
const props = defineProps<{
  value: string | string[]
}>()

function check() {
  return useAuth().auth(props.value)
}
</script>

<template>
  <div>
    <slot v-if="check()" />
    <slot v-else name="no-auth" />
  </div>
</template>