Newer
Older
SpaceIntegration_front / src / components / Auth / index.vue
Stephanie on 1 Dec 2022 270 bytes first 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>