lista page
This commit is contained in:
16
src/pages/ListasPage.vue
Normal file
16
src/pages/ListasPage.vue
Normal 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>
|
||||
Reference in New Issue
Block a user