mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
18 lines
500 B
Plaintext
18 lines
500 B
Plaintext
<ul>
|
|
<li for(userId in [0, 1, 2, 3])>
|
|
<async-fragment data-provider=data.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>
|