Advertisement
Guest User

NN

a guest
Jan 24th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. new Vue({
  2.   el: "#app",
  3.   data: {
  4.     todos: [
  5.       { text: "Learn JavaScript", done: false },
  6.       { text: "Learn Vue", done: false },
  7.       { text: "Play around in JSFiddle", done: true },
  8.       { text: "Build something awesome", done: true }
  9.     ]
  10.   },
  11.   methods: {
  12.     toggle: function(todo){
  13.         todo.done = !todo.done
  14.     }
  15.   }
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement