mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
10 lines
417 B
Plaintext
10 lines
417 B
Plaintext
<div>
|
|
<div rt-scope="15 as fifteen; 10 as ten">
|
|
<div rt-repeat="number in [111]" key="a{numberIndex}">
|
|
<div rt-repeat="pirate in [{name: 'Jack Sparrow', profile: {age: 99}}, {name: 'Someone Else', profile: {age: 98}}]" rt-scope="pirate.profile as profile; 20 as twenty" key="a{pirateIndex}">
|
|
{number}-{numberIndex}-{fifteen}-{ten}-{pirateIndex}-{pirate.name}-{profile.age}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|