Add debug information display for component loading in registration page
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 49s
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:
@@ -11,6 +11,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bg-white rounded-xl shadow-lg p-8">
|
<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
|
<form
|
||||||
class="space-y-6"
|
class="space-y-6"
|
||||||
@submit.prevent="handleFormSubmit"
|
@submit.prevent="handleFormSubmit"
|
||||||
|
|||||||
Reference in New Issue
Block a user