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/test/runtime/samples/const-tag-dependencies/main.svelte

10 lines
148 B

<script>
export let value = 4;
export let a = 3;
export let b = 4;
</script>
{#each [value] as n}
{@const ab = a + b}
<div>{ab}</div>
{/each}