|
|
|
|
|
by pcthrowaway
1182 days ago
|
|
Interesting, my memory of reading about the Svelte magic reactivity was that it was pretty well explained that the only things 'reactive' would be things which were assigned to in the reactive statement. So if you want to update y on some changes to x, you do $: y = x
And if you need something more complicated, a transformation perhaps, you put the logic in a function and assign y to the result of that function parseX(val) { ... }
$: y = parseX(x)
|
|
https://svelte.dev/repl/44e3aece18294ddb834bcdfb4394af48?ver...
` <script>
</script><h1>Hello {name}!</h1>
<button on:click={flip}>flip!</button> `