first commit funcionando pinia

This commit is contained in:
2025-01-28 13:40:37 +01:00
parent f57ab3cb4a
commit 77e0a534ed
6 changed files with 171 additions and 138 deletions

View File

@@ -1,13 +1,16 @@
<template>
<q-page class="flex flex-center">
<img
alt="Quasar logo"
src="~assets/quasar-logo-vertical.svg"
style="width: 200px; height: 200px"
>
<img alt="Quasar logo" src="~assets/quasar-logo-vertical.svg" style="width: 200px; height: 200px">
</q-page>
</template>
<script setup>
//
import { onMounted } from 'vue'
import { supabaseStore } from '../stores/supabaseStore'
const store = supabaseStore()
onMounted(() => {
console.log(store.prueba)
})
</script>