wip migration

This commit is contained in:
María
2025-08-14 15:12:29 +02:00
commit 61d96ac328
148 changed files with 31438 additions and 0 deletions

28
layouts/editar.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<div>
<NavBar />
<NavBarEditar v-if="isManager" />
<NavBarEditarUser v-else/>
<NuxtPage />
<CookieUsageNotification />
<Footer />
</div>
</template>
<script>
import { useAuthStore } from '@/stores/auth'
export default {
setup() {
const auth = useAuthStore();
return {
auth,
}
},
computed: {
isManager() {
return this.auth.isManager
},
}
}
</script>
<style></style>