home counter

Logic Blocks

#if Blocks

Uses {#if bool} ... {:else} ... {/if}
bool: true
if bool is true

#each Blocks

Uses {#each list as item, index (key)} ... {:else} empty... {/each}
  • apple
  • banana
  • carrot

#await Blocks

Uses {#await expression} pending... {:then value} value... {:catch error} error... {/await}
getName: pending...
imki123_github