Files
gemory/src/pages/Index.vue
T
2026-06-28 14:18:09 +02:00

14 lines
386 B
Vue

<script setup lang="ts">
import {useAuthStore} from '@/auth';
const authStore = useAuthStore();
</script>
<template>
<div class="flex flex-col items-center justify-center h-screen gap-4">
<h1 class="text-2xl">eveal</h1>
<button v-if="!authStore.isAuthenticated" @click="authStore.login()">
Login with EVE Online
</button>
</div>
</template>