0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/documentation/examples/03-logic/02-else-if-blocks/App.svelte

12 lines
166 B
Svelte
Raw Normal View History

2019-03-10 20:53:01 +01:00
<script>
let x = 7;
</script>
{#if x > 10}
<p>{x} is greater than 10</p>
{:else if 5 > x}
<p>{x} is less than 5</p>
{:else}
<p>{x} is between 5 and 10</p>
2023-05-14 07:50:43 +02:00
{/if}