Add debug information display for component loading in registration page
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 49s

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 62115ff1d1
commit f1cf06ca48

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"