SVELTE Referans: Props
Props için hızlı referans.
SVELTE Referans — Props
Props için hızlı özet, sözdizimi ve örnek.
Sözdizimi
<script> let x=0; </script>
Örnek
<script>
let n = 0;
</script>
<button on:click={() => n += 1}>Count: {n}</button>
Props için hızlı referans.
Props için hızlı özet, sözdizimi ve örnek.
<script> let x=0; </script>
<script>
let n = 0;
</script>
<button on:click={() => n += 1}>Count: {n}</button>