Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
<script>
let waiter;
function getPromise() {
return new Promise((res, rej) => {
setTimeout(function() {
if(Math.random() < 0.2) {
res('Đã có món ăn!!');
} else {
rej('Ông bồi bàn ngã rồi, không có đồ ăn đâu!');
}
}, 3000);
});
}
function start() {
waiter = getPromise();
}
</script>

<button on:click={start}>
Gọi món
</button>

{#if waiter}
{#await waiter}
<p>...waiting</p>
{:then message}
<p>{message}</p>
{:catch error}
<p style="color: red">{error}</p>
{/await}
{/if}
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */