Files
nucleoDocs/nuxt4/app/components/auth/LoginButton.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

20 lines
395 B
Vue

<template>
<UButton
color="success"
size="lg"
@click="handleClick"
>
<template #leading>
<UIcon name="i-heroicons-arrow-right-end-on-rectangle" />
</template>
Iniciar Sesión
</UButton>
</template>
<script setup lang="ts">
const handleClick = () => {
// Recargar la página para forzar redirect de Authentik al login
window.location.reload()
}
</script>