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