8 lines
182 B
Vue
8 lines
182 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
const { logout } = useAuth()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<button @click="logout" class="text-sm text-gray-500 hover:text-gray-700">Abmelden</button>
|
||
|
|
</template>
|