Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <template>
  2. ...
  3. <tbody>
  4. <tr repeat.for="todoItem of todoItems">
  5. <td>${todoItem.id}</td>
  6. <td><span class="${todoItem.is_complete ? 'completed-task' : 'incomplete-task'}"> ${todoItem.text} </span></td>
  7. <td>${todoItem.created_at | dateFormat}</td>
  8. <td><input type="checkbox"checked.bind="todoItem.is_complete"></input></td>
  9. </tr>
  10. </tbody>
  11. </table>
  12. ...
  13. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement