Skip to content

Commit

Permalink
docs: update Chinese README (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
tflins authored Nov 12, 2021
1 parent 74a3490 commit 7c761b1
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const { ref, reactive } = VueCompositionAPI

## TypeScript 支持

> 本插件要求使用 TypeScript **3.5.1** 或以上版本
> 本插件要求使用 TypeScript **4.2** 或以上版本
为了让 TypeScript 在 Vue 组件选项中正确地进行类型推导,我们必须使用 `defineComponent` 来定义组件:

Expand Down Expand Up @@ -384,6 +384,26 @@ watch(

</details>

### `createApp`

<details>
<summary>
⚠️ <code>createApp()</code> 是全局的
</summary>

在 Vue3 中,引入了 `createApp()` 来隔离不同应用实例的上下文(plugin, components 等)。 由于 Vue2 的设计,在这个插件中,我们提供 `createApp()` 作为一个向前兼容的 API ,它只是全局的一个别名。

```ts
const app1 = createApp(RootComponent1)
app1.component('Foo', Foo) // 相当于 Vue.component('Foo', Foo)
app1.use(VueRouter) // 相当于 Vue.use(VueRouter)

const app2 = createApp(RootComponent2)
app2.component('Bar', Bar) // 相当于 Vue.use('Bar', Bar)
```

</details>

### `shallowReadonly`

<details>
Expand Down

0 comments on commit 7c761b1

Please sign in to comment.