|
6 | 6 | * **compiler-core:** should alias name in helperString ([#743](https://github.com/vuejs/vue-next/issues/743)) ([7b987d9](https://github.com/vuejs/vue-next/commit/7b987d9450fc7befcd0946a0d53991d27ed299ec)), closes [#740](https://github.com/vuejs/vue-next/issues/740)
|
7 | 7 | * **compiler-dom:** properly stringify class/style bindings when hoisting static strings ([1b9b235](https://github.com/vuejs/vue-next/commit/1b9b235663b75db040172d2ffbee1dd40b4db032))
|
8 | 8 | * **reactivity:** should trigger all effects when array length is mutated ([#754](https://github.com/vuejs/vue-next/issues/754)) ([5fac655](https://github.com/vuejs/vue-next/commit/5fac65589b4455b98fd4e2f9eb3754f0acde97bb))
|
9 |
| -* **sfc:** inherit parent scopeId on child rooot ([#756](https://github.com/vuejs/vue-next/issues/756)) ([9547c2b](https://github.com/vuejs/vue-next/commit/9547c2b93d6d8f469314cfe055960746a3e3acbe)) |
| 9 | +* **sfc:** inherit parent scopeId on child root ([#756](https://github.com/vuejs/vue-next/issues/756)) ([9547c2b](https://github.com/vuejs/vue-next/commit/9547c2b93d6d8f469314cfe055960746a3e3acbe)) |
10 | 10 | * **types:** improve ref typing, close [#759](https://github.com/vuejs/vue-next/issues/759) ([627b9df](https://github.com/vuejs/vue-next/commit/627b9df4a293ae18071009d9cac7a5e995d40716))
|
11 | 11 | * **types:** update setup binding unwrap types for 6b10f0c ([a840e7d](https://github.com/vuejs/vue-next/commit/a840e7ddf0b470b5da27b7b2b8b5fcf39a7197a2)), closes [#738](https://github.com/vuejs/vue-next/issues/738)
|
12 | 12 |
|
|
44 | 44 | instead of moving it (see #737).
|
45 | 45 |
|
46 | 46 | Ensuring correct behavior for all possible Array methods while
|
47 |
| - retaining the ref unwrapping behavior is exceedinly complicated; In |
| 47 | + retaining the ref unwrapping behavior is exceedingly complicated; In |
48 | 48 | addition, even if Vue handles the built-in methods internally, it
|
49 | 49 | would still break when the user attempts to use a 3rd party utility
|
50 |
| - functioon (e.g. lodash) on a reactive array containing refs. |
| 50 | + function (e.g. lodash) on a reactive array containing refs. |
51 | 51 |
|
52 | 52 | After this commit, similar to other collection types like Map and
|
53 | 53 | Set, Arrays will no longer automatically unwrap contained refs.
|
|
145 | 145 | behaves exactly the same as 2.x.
|
146 | 146 |
|
147 | 147 | - When using the effect signature or `{ immediate: true }`, the
|
148 |
| - intital execution is now performed synchronously instead of |
| 148 | + initial execution is now performed synchronously instead of |
149 | 149 | deferred until the component is mounted. This is necessary for
|
150 | 150 | certain use cases to work properly with `async setup()` and
|
151 | 151 | Suspense.
|
|
0 commit comments