+12
-1
lines changedFilter options
+12
-1
lines changed Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
1
+
const todoApp = new Vue({
2
+
el: '.todoapp',
3
+
data: {
4
+
title: 'Todos',
5
+
todos: [
6
+
{ text: 'Learn JavaScript ES6+ goodies', isDone: true },
7
+
{ text: 'Learn Vue', isDone: false },
8
+
{ text: 'Build something awesome', isDone: false },
9
+
],
10
+
}
11
+
});
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
13
13
14
14
<section class="todoapp">
15
15
<header class="header">
16
-
<h1>todos</h1>
16
+
<h1 v-text="title"></h1>
17
17
<input class="new-todo" placeholder="What needs to be done?" autofocus>
18
18
</header>
19
19
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4