Advertisement
Guest User

Untitled

a guest
May 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div id="todo-list">
  2. <input v-model="todoText" placeholder="Input TODO"/>
  3. <button v-on="click:add" v-attr="disabled:!todoText">Add</button>
  4. <button v-on="click:deleteAll">Delete all</button>
  5.  
  6. <div v-repeat="items">
  7. <span v-on="click:done=!done" v-style="text-decoration:done?'line-through':''">{{$index}} - {{text}}</span>
  8. <button v-on="click:delete">Delete</button>
  9. </div>
  10. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement