Files
hello-world-imba-client/app/todos.imba
Julien Lengrand-Lambert a797a10ad0 First version working
2021-09-26 10:34:47 +02:00

16 lines
259 B
Plaintext

tag todo-item
prop data
<self>
<p> data
export tag TodoApp
prop todos
<self> for todo in todos
<todo-item data=todo>
export tag TodoForm
prop message
<self>
<input type='text' bind=message>
<button @click=emit("clicked", message)> 'Add TODO'