Louis Hollingworth
14659122c3
DB connected, check issues with writing. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
22 lines
571 B
Vue
22 lines
571 B
Vue
<script setup lang="ts">
|
|
const router = useRouter()
|
|
definePageMeta({
|
|
middleware: 'auth'
|
|
})
|
|
|
|
async function logout() {
|
|
router.push('/login')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid h-screen place-items-center">
|
|
<div class="grid place-items-center">
|
|
<h1 class="text-6xl font-bold underline">Vänner Bästa | Dash</h1>
|
|
<div class="mt-10 mx-4 place-items-center">
|
|
<p>Logged in as {{ user?.user_metadata?.full_name }}</p>
|
|
<button @click="logout" >Logout</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template> |