From b76fdc2b9b9a7de1a32d90590a2f3316f5144438 Mon Sep 17 00:00:00 2001
From: Tom Bray <tom.bray@student-cs.fr>
Date: Fri, 3 Jun 2022 10:32:11 +0200
Subject: [PATCH] Initialisation de la branche

---
 frontend/src/views/Home.vue | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue
index afd2064..71a259c 100644
--- a/frontend/src/views/Home.vue
+++ b/frontend/src/views/Home.vue
@@ -2,6 +2,8 @@
   <div class="home">
     <img alt="Vue logo" src="../assets/logo.png" />
     <h1>Welcome to Your Vue.js App</h1>
+    <input type="text"  v-model="moviename" />
+    <div class="film-name">Le film est : {{ moviename }}</div>
     <p>
       For a guide and recipes on how to configure / customize this project,<br />
       check out the
@@ -79,6 +81,11 @@
 <script>
 export default {
   name: "Home",
+  data: function () {
+    return {
+      moviename: 'test',
+    };
+  },
 };
 </script>
 
-- 
GitLab