Skip to content

Instantly share code, notes, and snippets.

@t4t5
Last active April 3, 2017 15:17
Show Gist options
  • Save t4t5/b034a60b47eb398e4a4b32010404f631 to your computer and use it in GitHub Desktop.
Save t4t5/b034a60b47eb398e4a4b32010404f631 to your computer and use it in GitHub Desktop.
todo-list-template-3
{{! src/ui/components/todo-list/template.hbs }}
<div id="todo-app">
<ul>
{{#each items key="@index" as |item|}}
<todo-item
@item={{item}}
@deleteItem={{action deleteItem}}
@toggleItem={{action toggleItem}}
/>
{{/each}}
</ul>
<input
placeholder="New todo"
value={{newItemText}}
onkeyup={{action updateNewItemText}}
/>
<button onclick={{action addItem}}>
Add item
</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment