mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 13:45:59 +00:00
19 lines
281 B
Vue
19 lines
281 B
Vue
<script setup lang="ts">
|
|
import {definePageMeta, useAuth} from "#imports";
|
|
|
|
const {signIn} = await useAuth();
|
|
|
|
definePageMeta({
|
|
middleware: ["auth"]
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h1>Login</h1>
|
|
<button @click="signIn">
|
|
Sign In
|
|
</button>
|
|
</div>
|
|
</template>
|