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 10d52dd commit 20b4bd5Copy full SHA for 20b4bd5
examples/todoApp/index.html
@@ -13,7 +13,7 @@
13
<ul>
14
<li v-for="item in items" track-by=".key">
15
{{ item.text }}
16
- <span @click="removeTodo(item['.key'])">X</span>
+ <button @click="removeTodo(item['.key'])">X</button>
17
</li>
18
</ul>
19
<form @submit.prevent="addTodo">
@@ -24,7 +24,7 @@
24
25
<script>
26
/* global Vue, Firebase */
27
- var itemsRef = new Firebase('https://ReactFireTodoApp.firebaseio.com/items/')
+ var itemsRef = new Firebase('https://vuefiredemo.firebaseio.com/items/')
28
29
new Vue({
30
el: '#app',
0 commit comments