21 lines
539 B
Vue
21 lines
539 B
Vue
<template>
|
|
<q-page>
|
|
<div class="bg-light-green window-height window-width row justify-center items-center">
|
|
<div class="column">
|
|
<div class="row"></div>
|
|
<h1>Página principal</h1>
|
|
<h3 v-if="store.user">You are logged in as {{ store.user.email }}
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
</q-page>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { supabaseStore } from '../stores/supabaseStore'
|
|
//import useSupabase from '../boot/supabase'
|
|
|
|
const store = supabaseStore()
|
|
//const { supabase } = useSupabase()
|
|
</script>
|