Files
nuxt-oauth/playground/pages/home.vue
René Preuß 47b0bf4ec9 first commit
2023-02-18 14:27:55 +01:00

21 lines
295 B
Vue

<script setup lang="ts">
import {useAuth} from "#imports";
const {user, signOut} = await useAuth();
definePageMeta({
middleware: ["auth"]
})
</script>
<template>
<div v-if="user">
Hello {{ user.name }}
<button @click="signOut">
Sign Out
</button>
</div>
</template>