vue3-yuanma/packages/runtime-test/src
Evan You 09b4202a22 refactor(reactivity): adjust APIs
BREAKING CHANGE: Reactivity APIs adjustments:

- `readonly` is now non-tracking if called on plain objects.
  `lock` and `unlock` have been removed. A `readonly` proxy can no
  longer be directly mutated. However, it can still wrap an already
  reactive object and track changes to the source reactive object.

- `isReactive` now only returns true for proxies created by `reactive`,
   or a `readonly` proxy that wraps a `reactive` proxy.

- A new utility `isProxy` is introduced, which returns true for both
  reactive or readonly proxies.

- `markNonReactive` has been renamed to `markRaw`.
2020-04-15 16:45:20 -04:00
..
index.ts refactor(types): use stricter settings 2020-03-23 11:08:22 -04:00
nodeOps.ts refactor(reactivity): adjust APIs 2020-04-15 16:45:20 -04:00
patchProp.ts refactor(runtime-core): adjust patchProp value arguments order 2020-03-09 16:15:49 -04:00
serialize.ts fix(runtime-test): output empty attrs without value in seralized output 2019-12-17 12:31:38 -05:00
triggerEvent.ts refactor: use isArray function from shared (#441) 2019-11-08 09:52:24 -05:00