Files
ghostwriter/app/components/app-bar.vue
2025-04-07 12:59:20 +03:00

15 lines
442 B
Vue

<script setup lang="ts">
const { user, clear } = useUserSession();
</script>
<template>
<div class="w-full h-16 bg-black text-white flex">
<UContainer class="max-w-2xl flex justify-between items-center">
<div class="font-bold text-xl">Joyful</div>
<UDropdownMenu :items="[{ label: 'Log out', onSelect: () => clear() }]">
<UAvatar :src="user!.avatar" />
</UDropdownMenu>
</UContainer>
</div>
</template>