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
Api.svelte
Constructor.svelte
<script>
import Api from "./Api.svelte";
import Constructor from "./Constructor.svelte";
let checked = false;
</script>

<input type="checkbox" bind:checked>
<span class:highlight={checked}>API</span>
<span>/</span>
<span class:highlight={!checked}>Constructor</span>
<div>
{#if checked}
<Api></Api>
{:else}
<Constructor></Constructor>
{/if}
</div>

<style>
div {
width: 400px;
height: 600px;
}
span {
padding: 10px 3px;
}
.highlight {
background: blue;
color: white;
}
</style>
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */