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/packages/svelte/tests/runtime-runes/samples/dynamic-component-transition/Component.svelte

11 lines
218 B

<script>
import { fade } from 'svelte/transition';
let show = $state(true);
</script>
<h1>Outside</h1>
{#if show}
<button onclick={()=> show = false} transition:fade|global={{ duration: 100 }}>Hide</button>
{/if}