Newer
Older
smartwell_front / src / components / AuthAll / index.vue
lyg on 27 Jun 267 bytes v3项目初始化
<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>