tablas y frontend visualizador de DB listo

This commit is contained in:
2025-09-26 17:48:45 -06:00
parent 3fc25719f3
commit 44916b642b
9 changed files with 403 additions and 72 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div v-if="open" class="modal-backdrop" @click.self="$emit('close')">
<div class="modal">
<div class="modal" :class="{ fullscreen }">
<div class="modal-header">
<strong>{{ title }}</strong>
<button class="icon-btn" @click="$emit('close')">Cerrar</button>
@@ -18,7 +18,6 @@
</template>
<script setup>
defineProps({ open: Boolean, title: String });
defineProps({ open: Boolean, title: String, fullscreen: { type: Boolean, default: false } });
defineEmits(['close']);
</script>