Add debug information display for component loading in registration page

Introduce a visible debug section in the registrieren.vue component to confirm the loading status and the definition of the handleFormSubmit method. This addition aims to enhance visibility during development and assist in troubleshooting component behavior.
This commit is contained in:
Torsten Schulz (local)
2026-01-07 22:37:46 +01:00
parent 5e88cd5810
commit a2c68c26a5

View File

@@ -11,6 +11,11 @@
</div>
<div class="bg-white rounded-xl shadow-lg p-8">
<!-- Debug: Sichtbarer Test -->
<div class="mb-4 p-2 bg-yellow-100 border border-yellow-300 rounded text-xs">
<strong>DEBUG:</strong> Komponente geladen. handleFormSubmit definiert: {{ typeof handleFormSubmit !== 'undefined' ? 'JA' : 'NEIN' }}
</div>
<form
class="space-y-6"
@submit.prevent="handleFormSubmit"