1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
react-templates/test/data/scope-evaluated-after-if.rt
2015-09-03 10:53:48 +03:00

9 lines
303 B
Plaintext

<div>
<div rt-repeat="pirate in [{first: 'Jack', last: 'Sparrow', photo: {url: 'jack.jpg'}}, {first: 'Unknown', last: 'Pirate'}]" key="a{pirateIndex}">
<h1>{pirate.first} {pirate.last}</h1>
<div rt-if="pirate.photo" rt-scope="pirate.photo.url as url">
<img src="{url}"/>
</div>
</div>
</div>