Skip to content
Snippets Groups Projects
Commit b76fdc2b authored by Tom Bray's avatar Tom Bray
Browse files

Initialisation de la branche

parent 9686c9c4
No related branches found
No related tags found
2 merge requests!6Vrai front,!1Initialisation front
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment