You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
376 B
12 lines
376 B
<script setup lang="ts">
|
|
const { user, isLoggedIn } = useAuth()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col items-center justify-center min-h-screen">
|
|
<h1 class="text-4xl font-bold mb-4">Welcome to Nuxt 4!</h1>
|
|
<p class="text-lg text-gray-600">This is the index page.</p>
|
|
<p>{{ isLoggedIn }}</p>
|
|
<p>{{ user }}</p>
|
|
</div>
|
|
</template>
|