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

17
pages/test/admin.vue Normal file
View File

@@ -0,0 +1,17 @@
<script>
export default {
layout: 'admin',
}
// Esto debe estar fuera del export default
definePageMeta({
middleware: 'auth',
auth: {
authority: 'SITE_ADMIN',
},
})
</script>
<template>
<h1>Solo para admins</h1>
</template>