You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -334,7 +334,7 @@ export default {
334
334
335
335
`reactive` uses `Vue.observable` underneath which will ***mutate*** the original object.
336
336
337
-
> :bulb: In Vue 3, it will return an new proxy object.
337
+
> :bulb: In Vue 3, it will return a new proxy object.
338
338
339
339
</details>
340
340
@@ -391,7 +391,7 @@ watch(() => {
391
391
⚠️ <code>createApp()</code> is global
392
392
</summary>
393
393
394
-
In Vue 3, `createApp()` is introduced to provide context(plugin, components, etc.) isolation between app instances. Due the the design of Vue 2, in this plugin, we provide `createApp()` as a forward compatible API which is just an alias of the global.
394
+
In Vue 3, `createApp()` is introduced to provide context(plugin, components, etc.) isolation between app instances. Due the design of Vue 2, in this plugin, we provide `createApp()` as a forward compatible API which is just an alias of the global.
395
395
396
396
```ts
397
397
const app1 =createApp(RootComponent1)
@@ -443,7 +443,7 @@ export default {
443
443
⚠️ <code>shallowReadonly()</code> will create a new object and with the same root properties, new properties added will <b>not</b> be readonly or reactive.
444
444
</summary>
445
445
446
-
> :bulb: In Vue 3, it will return an new proxy object.
446
+
> :bulb: In Vue 3, it will return a new proxy object.
447
447
448
448
</details>
449
449
@@ -553,6 +553,6 @@ defineComponent({
553
553
554
554
### Performance Impact
555
555
556
-
Due the the limitation of Vue2's public API. `@vue/composition-api` inevitably introduces some performance overhead. Note that in most scenarios, this shouldn't be the source of performance issues.
556
+
Due the limitation of Vue2's public API. `@vue/composition-api` inevitably introduces some performance overhead. Note that in most scenarios, this shouldn't be the source of performance issues.
557
557
558
558
You can check the [benchmark results](https://antfu.github.io/vue-composition-api-benchmark-results/) for more details.
0 commit comments