Skip to content

Commit 20b4bd5

Browse files
committed
update example
1 parent 10d52dd commit 20b4bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/todoApp/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<ul>
1414
<li v-for="item in items" track-by=".key">
1515
{{ item.text }}
16-
<span @click="removeTodo(item['.key'])">X</span>
16+
<button @click="removeTodo(item['.key'])">X</button>
1717
</li>
1818
</ul>
1919
<form @submit.prevent="addTodo">
@@ -24,7 +24,7 @@
2424

2525
<script>
2626
/* global Vue, Firebase */
27-
var itemsRef = new Firebase('https://ReactFireTodoApp.firebaseio.com/items/')
27+
var itemsRef = new Firebase('https://vuefiredemo.firebaseio.com/items/')
2828

2929
new Vue({
3030
el: '#app',

0 commit comments

Comments
 (0)