forked from mrizky-kur/Redux-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlooping.html
More file actions
24 lines (20 loc) · 774 Bytes
/
looping.html
File metadata and controls
24 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
<lightning-card title="for:each looping">
<div class="slds-m-around_medium">
<template for:each={carList} for:item="car">
<ul key={car} class="slds-has-dividers_around-space">
<li class="slds-item">{car}</li>
</ul>
</template>
</div>
</lightning-card>
<lightning-card title="iterator looping">
<div class="slds-m-around_medium">
<template for:each={carList} for:item="car">
<ul key={car} class="slds-has-dividers_around-space">
<li class="slds-item">{car}</li>
</ul>
</template>
</div>
</lightning-card>
</template>