Newer
Older
smart-metering-front / src / components / AuthAll / index.vue
Stephanie on 1 Dec 2022 267 bytes first commit
<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>