mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 13:45:59 +00:00
21 lines
295 B
Vue
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>
|