Vue 3.5.40 Released: Bug Fixes and Performance Improvements

Nuxt / Vue · 16 Jul 2026 · 2 min read

#vue

The Vue team has released v3.5.40 of the core framework, a patch version that focuses on stability and performance. This release includes multiple bug fixes and minor improvements that address edge cases and enhance runtime behavior for developers using Vue 3.

Key Changes

  • Fixed v-model reactivity issue: Resolved a bug where v-model bindings on custom components could become stale when the parent re-renders, ensuring two-way data binding remains consistent.

  • Improved v-memo performance: Optimized the internal handling of v-memo directives to reduce unnecessary updates in large lists, resulting in smoother rendering for dynamic data sets.

  • Fixed defineExpose with TypeScript: Corrected type inference for defineExpose in <script setup> components when using TypeScript's strict mode, eliminating spurious type errors.

  • Fixed nextTick edge case: Addressed a rare situation where nextTick callbacks could be invoked before the DOM update completes when called during component unmounting.

  • Enhanced watch deep tracking: Improved deep watch on reactive arrays to detect nested mutations (e.g., splice, push) correctly, preventing missed updates.

  • Fixed useAttrs empty object anomaly: Resolved an issue where useAttrs could return an empty object in certain component hierarchies, restoring expected behavior.

Why It Matters

This patch release underscores Vue's commitment to reliability. The v-model fix directly impacts form-heavy applications, while the v-memo improvements benefit developers working with large datasets or real-time updates. TypeScript users will appreciate the refined defineExpose types, which streamline development in strict mode. These changes require no code modifications on your part—simply update your dependency to 3.5.40 and enjoy a more robust framework.

Source: https://github.com/vuejs/core/releases/tag/v3.5.40

Related

auto-curated · source linked above ← all news