marko/test/test-project/rxml-templates/async-fragment-args.rxml
2014-04-14 13:44:38 -06:00

21 lines
590 B
Plaintext

<c-template>
<ul>
<li c-for="userId in [0, 1, 2, 3]">
<async-fragment dependency="userInfo" var="userInfo" arg-userId="$userId">
<ul>
<li>
<b>Name:</b> $userInfo.name
</li>
<li>
<b>Gender:</b> $userInfo.gender
</li>
<li>
<b>Occupation:</b> $userInfo.occupation
</li>
</ul>
</async-fragment>
</li>
</ul>
</c-template>