lista page

This commit is contained in:
2023-03-08 15:47:06 +01:00
parent 0595570cf0
commit e029307aac

16
src/pages/ListasPage.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div class="flex flex-center">
<h1>
{{ listaStore.pb.authStore.model.username }}
</h1>
</div>
<q-page class="flex flex-center">
<div>Página de listas</div>
</q-page>
</template>
<script setup>
import { ref } from "vue";
import { useListaStore } from "../stores/lista.js";
const listaStore = useListaStore();
</script>