vue3-core/packages/reactivity
Evan You 65abd6edbd
release: v3.6.0-alpha.1
2025-07-12 16:00:05 +08:00
..
__benchmarks__ workflow: bench against bundled dist file to avoid import access overhead 2024-11-14 08:38:48 +08:00
__tests__ refactor(reactivity, runtime-core): improve performance-critical code (#13274) 2025-07-09 17:56:19 -07:00
src fix(reactivity): add back STOP flag (#13605) 2025-07-10 17:14:59 +08:00
LICENSE
README.md
index.js
package.json release: v3.6.0-alpha.1 2025-07-12 16:00:05 +08:00

README.md

@vue/reactivity

Usage Note

This package is inlined into Global & Browser ESM builds of user-facing renderers (e.g. @vue/runtime-dom), but also published as a package that can be used standalone. The standalone build should not be used alongside a pre-bundled build of a user-facing renderer, as they will have different internal storage for reactivity connections. A user-facing renderer should re-export all APIs from this package.

For full exposed APIs, see src/index.ts.

Credits

The implementation of this module is inspired by the following prior art in the JavaScript ecosystem:

Caveats

  • Built-in objects are not observed except for Array, Map, WeakMap, Set and WeakSet.