mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
15 lines
261 B
Plaintext
15 lines
261 B
Plaintext
class {
|
|
onMount() {
|
|
this.purchaseEvents = [];
|
|
}
|
|
|
|
handleItemPurchase(item) {
|
|
this.purchaseEvents.push(item);
|
|
}
|
|
}
|
|
|
|
<div>
|
|
<for|item| of=input.items>
|
|
<item item=item once-purchase("handleItemPurchase")/>
|
|
</for>
|
|
</div> |