Created
October 24, 2016 15:26
-
-
Save afm-sayem/05e866106e1be96087f12a339a83d516 to your computer and use it in GitHub Desktop.
Aurelia Template example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h1>${heading}</h1> | |
<form submit.trigger="addTodo()"> | |
<input type="text" value.bind="todoDescription"> | |
<button type="submit">Add Todo</button> | |
</form> | |
<ul> | |
<li repeat.for="todo of todos"> | |
<input type="checkbox" checked.bind="todo.done"> | |
<span> | |
${todo.description} | |
</span> | |
<button click.trigger="removeTodo(todo)">Remove</button> | |
</li> | |
</ul> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment