1<div>
2  <!-- If_Compiler_Test_001 -->
3  <text if="{{conditionVar === 1}}">{{componentData.if}}</text>
4
5  <!-- If_Compiler_Test_002 -->
6  <div class="item-content">
7    <text if="{{conditionVar === 1}}">{{componentData.if}}</text>
8    <text elif="{{conditionVar === 2}}">{{componentData.elif}}</text>
9    <text else>{{componentData.else}}</text>
10  </div>
11
12  <!-- If_Compiler_Test_003 -->
13  <div if="{{showTest}}">
14    <div for="{{list}}">
15      <text>{{$idx}}.{{$item.name}}</text>
16    </div>
17  </div>
18
19  <!-- If_Compiler_Test_004 -->
20  <div for="{{list}}">
21    <div if="{{showTest}}">
22      <text>{{$idx}}.{{$item.name}}</text>
23    </div>
24  </div>
25
26  <!-- If_Compiler_Test_005 -->
27  <div for="(personIndex, personItem) in list">
28    <div if="{{personIndex==1}}">
29      <text>{{personItem.name}}</text>
30    </div>
31  </div>
32</div>