3.5.32

Latest release in branch 3.5
Released 12 days ago (April 03, 2026)

Software Vue.js
Branch 3.5
Status
Supported
End of support (OSS) TBD
First official release version 3.5.0
First official release date 1 year ago (September 03, 2024)
Release notes https://github.com/vuejs/core/releases/tag/v3.5.32
Source code https://github.com/vuejs/core/tree/v3.5.32
Documentation https://v3.vuejs.org
Migration guide https://v3-migration.vuejs.org
Vue.js 3.5 Releases View full list

What Is New in Vue.js 3.5

Category Key Updates
New Features defineModel macro, reactive props destructure, v-model modifiers for component bindings
Performance Faster computed property tracking, optimized template parsing, improved SFC compilation
Developer Experience Enhanced TypeScript support, improved SFC script compilation, better IDE tooling
Bug Fixes Memory leak fixes, v-model edge cases, SSR hydration improvements

How does the new defineModel macro simplify two-way binding?

The defineModel macro is a game-changer for component authoring. It eliminates the boilerplate of declaring a prop and emitting an update event for v-model bindings. This macro automatically handles the value prop and update:value event, making two-way binding declarations much cleaner.

In practice, this means you can replace multiple lines of code with a single macro call. It works seamlessly with built-in modifiers like .trim and supports custom modifiers, which streamlines component development significantly.

<script setup>
// Before: Manual prop and event declaration
const props = defineProps(['modelValue'])
const emit = defineEmits(['update:modelValue'])

// After: Simplified with defineModel
const modelValue = defineModel()
</script>

What reactive prop destructuring improvements were introduced?

Vue 3.5 now maintains reactivity when destructuring props that contain complex types like objects or arrays. Previously, destructuring would break reactivity, forcing developers to use toRefs or work with the props object directly.

This enhancement means you can safely destructure props in your setup function without losing reactivity tracking. It's a quality-of-life improvement that makes code more intuitive and reduces potential bugs from unexpected loss of reactivity.

<script setup>
const { user, settings } = defineProps<{
  user: User,
  settings: Config
}>()

// Both 'user' and 'settings' remain reactive
</script>

How did computed property performance get better?

Computed properties now track dependencies more efficiently, reducing unnecessary re-computations. The optimization comes from improved dependency tracking algorithms that avoid over-triggering computed values when unrelated reactive states change.

This matters because complex applications with many computed properties will see measurable performance gains. The improvement is most noticeable in components with deep reactive object graphs where previous versions might have triggered more computations than necessary.

What TypeScript enhancements were included?

TypeScript support received several refinements, particularly around SFC script compilation and type inference. The update provides better type checking for component events, slots, and v-model bindings, catching more errors at compile time.

These improvements make the development experience more robust, especially for large codebases. The enhanced type safety reduces runtime errors and improves IDE autocompletion accuracy for Vue-specific constructs.

FAQ

Is the defineModel macro backward compatible with existing components?
Yes, the macro is additive and doesn't break existing code. You can gradually adopt it in new components or refactor existing ones without affecting functionality.

Do I need to update my build tools for Vue 3.5?
You should update Vite to the latest version and ensure your Vue-related plugins are compatible. The SFC compiler changes might require updated tooling for optimal performance.

How significant are the performance improvements for real applications?
While benchmarks show measurable gains, the impact varies by application structure. Apps with complex computed properties and deep reactive objects will benefit most from the optimized tracking.

Can I use reactive destructuring with all prop types?
Yes, the reactive destructuring works for both primitive and complex prop types. The reactivity system now preserves reactivity through destructuring assignments automatically.

What happens to the old v-model syntax with this release?
The existing v-model syntax remains fully supported. defineModel provides a cleaner alternative but doesn't deprecate or remove the traditional approach to two-way binding.

Releases In Branch 3.5

Version Release date
3.5.32 12 days ago
(April 03, 2026)
3.5.31 21 days ago
(March 25, 2026)
3.5.30 1 month ago
(March 09, 2026)
3.5.29 1 month ago
(February 24, 2026)
3.5.28 2 months ago
(February 09, 2026)
3.5.27 2 months ago
(January 19, 2026)
3.5.26 3 months ago
(December 18, 2025)
3.5.25 4 months ago
(November 24, 2025)
3.5.24 5 months ago
(November 07, 2025)
3.5.23 5 months ago
(November 06, 2025)
3.5.22 6 months ago
(September 25, 2025)
3.5.21 7 months ago
(September 02, 2025)
3.5.20 7 months ago
(August 25, 2025)
3.5.19 7 months ago
(August 21, 2025)
3.5.18 8 months ago
(July 23, 2025)
3.5.17 9 months ago
(June 18, 2025)
3.5.16 10 months ago
(May 29, 2025)
3.5.15 10 months ago
(May 26, 2025)
3.5.14 11 months ago
(May 15, 2025)
3.5.13 1 year ago
(November 15, 2024)
3.5.12 1 year ago
(October 11, 2024)
3.5.11 1 year ago
(October 03, 2024)
3.5.10 1 year ago
(September 27, 2024)
3.5.9 1 year ago
(September 26, 2024)
3.5.8 1 year ago
(September 22, 2024)
3.5.7 1 year ago
(September 20, 2024)
3.5.6 1 year ago
(September 16, 2024)
3.5.5 1 year ago
(September 13, 2024)
3.5.4 1 year ago
(September 10, 2024)
3.5.3 1 year ago
(September 06, 2024)
3.5.2 1 year ago
(September 05, 2024)
3.5.1 1 year ago
(September 04, 2024)
3.5.0 1 year ago
(September 03, 2024)
3.5.0-rc.1 1 year ago
(August 29, 2024)
3.5.0-beta.3 1 year ago
(August 20, 2024)
3.5.0-beta.2 1 year ago
(August 15, 2024)
3.5.0-beta.1 1 year ago
(August 08, 2024)
3.5.0-alpha.5 1 year ago
(July 31, 2024)
3.5.0-alpha.4 1 year ago
(July 24, 2024)
3.5.0-alpha.3 1 year ago
(July 19, 2024)
3.5.0-alpha.2 1 year ago
(May 04, 2024)
3.5.0-alpha.1 1 year ago
(April 29, 2024)