42 lines
1.2 KiB
Vue
42 lines
1.2 KiB
Vue
<template>
|
|
<UDashboardPanel id="home">
|
|
<template #header>
|
|
<UDashboardNavbar title="Home" :ui="{ right: 'gap-3' }">
|
|
<template #leading>
|
|
<UDashboardSidebarCollapse />
|
|
</template>
|
|
|
|
<template #right>
|
|
<UTooltip text="Notifications" :shortcuts="['N']">
|
|
<UButton color="neutral" variant="ghost" square>
|
|
<UChip color="error" inset>
|
|
<UIcon name="i-lucide-bell" class="size-5 shrink-0" />
|
|
</UChip>
|
|
</UButton>
|
|
</UTooltip>
|
|
|
|
<UButton icon="i-lucide-plus" size="md" class="rounded-full" @click="navigateTo('/create')" />
|
|
</template>
|
|
</UDashboardNavbar>
|
|
|
|
<UDashboardToolbar>
|
|
<template #left> toolbar left </template>
|
|
</UDashboardToolbar>
|
|
</template>
|
|
|
|
<template #body>
|
|
<div>
|
|
<pre>{{ session }}</pre>
|
|
<h1>{{ session.data ? 'Du bist eingeloggt' : 'Nicht eingeloggt' }}</h1>
|
|
<button v-if="session?.data" @click="authClient.signOut()">Sign out</button>
|
|
</div>
|
|
<Register />
|
|
<Login />
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const session = authClient.useSession()
|
|
</script>
|