You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/await-containing-if/main.svelte

16 lines
252 B

<script>
export let thePromise;
export let show;
</script>
<div>
{#await thePromise}
<p>loading...</p>
{:then theValue}
{#if show}
<p>the value is {theValue}</p>
{/if}
{:catch theError}
<p>oh no! {theError.message}</p>
{/await}
</div>