Files
cultureat-bak/wp-content/themes/ccat/app/components/auth/LogoutForm.vue
Pascal Martineau 312a6f1b62
Some checks failed
NuxtHub deployment / deploy (push) Failing after 21s
WordPress deployment / deploy (push) Successful in 8s
feat: Initial Nuxt app
2025-08-27 13:37:40 -04:00

25 lines
569 B
Vue

<script setup lang="ts">
const { onLogoutClick } = useLogout();
</script>
<template>
<div class="w-full space-y-6">
<div class="flex flex-col text-center">
<div class="text-xl text-pretty font-semibold text-highlighted">
Déconnexion
</div>
<div class="mt-1 text-base text-pretty text-muted">
Veuillez confirmer la déconnexion.
</div>
</div>
<UButton
icon="i-lucide-log-out"
block
loading-auto
to="/auth"
label="Déconnexion"
@click="onLogoutClick"
/>
</div>
</template>