Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <ul>
  2.  
  3. <li v-for="todo in todoItems" class="todo-item">
  4.  
  5. <label class="todo-check">
  6. <input type="checkbox" v-model="todo.IsDone" v-on:click="move(todo)" />
  7. <span class="checkmark"></span>
  8. </label>
  9.  
  10. <span class="todo-text" v-bind:class="{ completed: todo.IsDone }">{{ todo.Text }}</span>
  11.  
  12. <a href="" onclick="return false;" title="Remove this item">x</a>
  13.  
  14. </li>
  15.  
  16. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement