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-legacy/samples/transition-js-if-outro-unre.../Component.svelte

19 lines
310 B

<script>
export let condition;
function foo(node, params) {
return {
duration: 100,
tick: t => {
node.foo = t;
}
};
}
let bool = true;
</script>
<button on:click={() => (condition = false)}></button>
<button on:click={() => (bool = !bool)}></button>
{#if bool}
<div out:foo></div>
{/if}