Skip to content

Instantly share code, notes, and snippets.

@codemwnci
Created August 25, 2017 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codemwnci/d53c85fc5a1b97cd69d5a2e89fa49d7e to your computer and use it in GitHub Desktop.
Save codemwnci/d53c85fc5a1b97cd69d5a2e89fa49d7e to your computer and use it in GitHub Desktop.
update todo vuejs / list item code
<li v-for="todo in todos">
<input type="checkbox" :checked="todo.done" @click="toggleCheck(todo)">
{{todo.text}}
<a href="#" v-if="todo.done" @click="deleteTodo(todo.id)">(delete)</a>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment