Participant mangement

This commit is contained in:
2026-04-11 22:17:38 +02:00
parent e6bd8c684d
commit ed7f887e3a
47 changed files with 1641 additions and 269 deletions

View File

@@ -12,6 +12,7 @@
ref="modalRef"
class="modal-content"
tabindex="-1"
:style="{ width: width }"
>
<div class="modal-header">
@@ -35,7 +36,8 @@ import { ref, watch, onMounted, onUnmounted, nextTick } from 'vue'
const props = defineProps({
show: Boolean,
title: { type: String, default: 'Modal' }
title: { type: String, default: 'Modal' },
width: { type: String, default: '1200px' },
})
const emit = defineEmits(['close'])