Update for Vue 3.5 introduces significant changes in performance which would be interesting to check on the JS benchmarks.
In 3.5, Vue's reactivity system has undergone another major refactor that achieves better performance and significantly improved memory usage (-56%) with no behavior changes. The refactor also resolves stale computed values and memory issues caused by hanging computeds during SSR.
In addition, 3.5 also optimizes reactivity tracking for large, deeply reactive arrays, making such operations up to 10x faster in some cases.
Update for Vue 3.5 introduces significant changes in performance which would be interesting to check on the JS benchmarks.