- Instalar @types/node para resolver referencias a process - Corregir colores inválidos en componentes (orange→warning, purple→secondary, gray→neutral, etc.) - Agregar tipos explícitos en GroupCheckButton y EditProfileButton - Eliminar propiedad timeout inválida en toasts
21 lines
358 B
Vue
21 lines
358 B
Vue
<template>
|
|
<AuthGroupCheckButton
|
|
group-name="grupo-prueba"
|
|
label="Grupo Prueba"
|
|
icon="i-heroicons-beaker"
|
|
color="primary"
|
|
variant="soft"
|
|
:verify-backend="verifyBackend"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
interface Props {
|
|
verifyBackend?: boolean
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
verifyBackend: false
|
|
})
|
|
</script>
|