mirror of https://github.com/sveltejs/svelte
15 lines
318 B
15 lines
318 B
{{#await thePromise}}
|
|
<p>loading...</p>
|
|
{{then theValue}}
|
|
<p>the value is {{theValue}}</p>
|
|
{{catch theError}}
|
|
<p>oh no! {{theError.message}}</p>
|
|
{{/await}}
|
|
|
|
{{#await thePromise}}
|
|
<p>loading...</p>
|
|
{{then theValue}}
|
|
<p>the value is {{theValue}}</p>
|
|
{{catch theError}}
|
|
<p>oh no! {{theError.message}}</p>
|
|
{{/await}} |