Vue 3.5 introduces Reactivity Transform, a compiler-based syntax sugar simplifying the declaration and usage of reactive state.
Reactivity Transform automatically generates and unwraps reactive wrappers, reducing manual efforts like using ref() and .value.
It is enabled in Vue 3.5+ through build tooling, such as vite-plugin-vue or using reactivityTransform: true with Vue Loader.
Reactivity Transform enhances code cleanliness in components, especially for beginners, but understanding the underlying reactivity model is still crucial.