From aedafa591009bf621d4e1d804a7d949dd870e078 Mon Sep 17 00:00:00 2001
From: Brendan Lawton <brendan.lawton@rbb-online.de>
Date: Wed, 22 May 2024 12:12:21 +0200
Subject: [PATCH] =?UTF-8?q?HTML-Formatierung=20ge=C3=A4ndert.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/App.vue | 31 ++++++++++++++-----------------
 1 file changed, 14 insertions(+), 17 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index f93020e..5c35fce 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,5 @@
 <script setup lang="ts">
-import Form from "./components/Form.vue"
+import Form from "./components/Form.vue";
 import Lottie from "./components/Lottie.vue";
 
 import { ref } from "vue";
@@ -8,25 +8,24 @@ const vorname = ref("");
 const nachname = ref("");
 const funktionZeileEins = ref("");
 const funktionZeileZwei = ref("");
-
 </script>
 
 <template>
   <div class="appGrid">
-    <div class="form">
-    <Form v-model:vorname="vorname" 
-    v-model:nachname="nachname" 
-    v-model:funktionZeileEins="funktionZeileEins"
-    v-model:funktionZeileZwei="funktionZeileZwei"></Form>
-  </div>
-  <div class="form" >
-    <Lottie :vorname="vorname" 
-    :nachname="nachname" 
-    :funktionZeileEins="funktionZeileEins" 
-    :funktionZeileZwei="funktionZeileZwei"></Lottie>
-  </div>
+    <Form
+      v-model:vorname="vorname"
+      v-model:nachname="nachname"
+      v-model:funktionZeileEins="funktionZeileEins"
+      v-model:funktionZeileZwei="funktionZeileZwei"
+    ></Form>
+
+    <Lottie
+      :vorname="vorname"
+      :nachname="nachname"
+      :funktionZeileEins="funktionZeileEins"
+      :funktionZeileZwei="funktionZeileZwei"
+    ></Lottie>
   </div>
-  
 </template>
 
 <style scoped>
@@ -50,7 +49,5 @@ const funktionZeileZwei = ref("");
 }
 
 .form {
-  /* width: 50%;
-  max-width: 500px; */
 }
 </style>
-- 
GitLab