tablas y frontend visualizador de DB listo
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user