SVELTE Reference: Props
Quick reference for Props.
SVELTE Reference — Props
Quick summary of Props with syntax and example.
Syntax
<script> let x=0; </script>
Example
<script>
let n = 0;
</script>
<button on:click={() => n += 1}>Count: {n}</button>