From a2c68c26a53b2c198eec7c82f0b757c193256e97 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Wed, 7 Jan 2026 22:37:46 +0100 Subject: [PATCH] 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. --- pages/registrieren.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/registrieren.vue b/pages/registrieren.vue index 6ae1db2..13f0a2e 100644 --- a/pages/registrieren.vue +++ b/pages/registrieren.vue @@ -11,6 +11,11 @@
+ +
+ DEBUG: Komponente geladen. handleFormSubmit definiert: {{ typeof handleFormSubmit !== 'undefined' ? 'JA' : 'NEIN' }} +
+