Newer
Older
xc-metering-front / src / components / AuthAll / index.vue
liyaguang on 19 Jul 2023 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>