Files
nucleoDocs/nuxt4/app/components/auth/CheckLvl0Button.vue
josedario87 8a576ab776
Some checks failed
build-and-deploy / build (push) Failing after 6s
build-and-deploy / deploy (push) Has been skipped
Implementación inicial de Nucleo Docs
2025-10-13 15:45:52 -06:00

21 lines
340 B
Vue

<template>
<AuthGroupCheckButton
group-name="lvl0"
label="Level 0"
icon="i-heroicons-key"
color="green"
variant="soft"
:verify-backend="verifyBackend"
/>
</template>
<script setup lang="ts">
interface Props {
verifyBackend?: boolean
}
withDefaults(defineProps<Props>(), {
verifyBackend: false
})
</script>