vue3-core/packages/reactivity
daiwei 5a8aa0b2ba
ci / test (push) Has been cancelled Details
ci / continuous-release (push) Has been cancelled Details
size data / upload (push) Has been cancelled Details
release: v3.5.22
2025-09-25 09:05:13 +08:00
..
__benchmarks__ workflow: bench against bundled dist file to avoid import access overhead 2024-11-14 08:38:48 +08:00
__tests__ fix(reactivity): respect readonly during ref unwrapping (#13905) 2025-09-24 17:10:49 +08:00
src fix(reactivity): respect readonly during ref unwrapping (#13905) 2025-09-24 17:10:49 +08:00
LICENSE
README.md chore: delete outdated content in readme (#8093) [ci skip] 2023-04-20 10:11:22 +08:00
index.js
package.json release: v3.5.22 2025-09-25 09:05:13 +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.