mandant-crm/frontend/components/LogoutButton.vue

16 lines
270 B
Vue
Raw Permalink Normal View History

<script setup lang="ts">
const { logout } = useAuth()
</script>
<template>
<button
type="button"
@click="logout"
aria-label="Abmelden"
title="Abmelden"
class="p-1.5 text-gray-500 hover:text-gray-700"
>
<IconLogout />
</button>
</template>