Have you tried building anything with Vue or Svelte recently?
Can you provide some concrete issues you ran into beyond them being “bizarro”?
<script> let numbers = $state([1, 2, 3, 4]); function addNumber() { numbers.push(numbers.length + 1); } const sum = numbers.reduce((x, y) => x + y, 0); </script> <p>{numbers.join(' + ')} = {sum}</p> <button onclick={addNumber}> Add a number </button>
Have you tried building anything with Vue or Svelte recently?
Can you provide some concrete issues you ran into beyond them being “bizarro”?