DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

SVELTE Reference: Props

Quick reference for Props.

Read time: 1 min Words: 14
My Progress

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>