mirror of
https://github.com/jlengrand/hello-world-imba-client.git
synced 2026-03-10 08:21:19 +00:00
16 lines
259 B
Plaintext
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'
|