Newer
Older
IntegratedFront / src / components / AuthAll / index.vue
lyg on 1 Nov 267 bytes first
<script lang="ts" setup name="AuthAll">
const props = defineProps<{
  value: string[]
}>()

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

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