We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf6af9f commit 6fbf3dfCopy full SHA for 6fbf3df
days/093-096-vuejs/movie_exploder/js/site.js
@@ -0,0 +1,8 @@
1
+// noinspection ES6ModulesDependencies
2
+
3
+app = new Vue({
4
+ el: '#app',
5
+ data: {
6
+ search_text: "initial value",
7
+ }
8
+})
days/093-096-vuejs/movie_exploder/views/index.html
@@ -12,6 +12,12 @@
12
13
<div class="card" id="app">
14
<h1>Movie Exploder</h1>
15
16
+ <input type="text" v-model="search_text">
17
+ <div style="color: green;">
18
+ {{search_text}}
19
+ </div>
20
21
</div>
22
23
<script src="../js/vue/vue.js"></script>
0 commit comments