Commit 24107c50 authored by Evan You's avatar Evan You

remove overlooked unecessary binding from Vue implementation

parent 40d9d467
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<ul id="todo-list"> <ul id="todo-list">
<li class="todo" v-repeat="todos | filterTodos" v-class="completed: completed, editing: this == editedTodo"> <li class="todo" v-repeat="todos | filterTodos" v-class="completed: completed, editing: this == editedTodo">
<div class="view"> <div class="view">
<input class="toggle" type="checkbox" v-model="completed" v-on="change: toggleTodo"> <input class="toggle" type="checkbox" v-model="completed">
<label v-text="title" v-on="dblclick: editTodo(this)"></label> <label v-text="title" v-on="dblclick: editTodo(this)"></label>
<button class="destroy" v-on="click: removeTodo(this)"></button> <button class="destroy" v-on="click: removeTodo(this)"></button>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment