Skip to content

Commit

Permalink
docs: update Chinese docs (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
leafstark authored Dec 4, 2021
1 parent 9276e30 commit 73524d2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ export default {
}
```

## 浏览器兼容性

`@vue/composition-api` 支持所有现代浏览器以及IE11+。对于更低版本的IE浏览器你需要安装`WeakMap` polyfill (例如使用 `core-js`库)。

## 限制

> :white_check_mark: 支持     :x: 不支持
Expand Down Expand Up @@ -448,6 +452,24 @@ defineComponent({

</details>

### `computed().effect`

<details>
<summary>
⚠️ <code>computed()</code> 拥有一个被设置为 <code>true</code> 的 <code>effect</code> 属性,用来代替 <code>ReactiveEffect<T></code>。
</summary>

由于实现上的不同, 在 `@vue/composition-api` 中没有 `ReactiveEffect` 这种概念。 因此, `effect``true` 只是为了能够区分 computed 和 refs:

```ts
function isComputed<T>(o: ComputedRef<T> | unknown): o is ComputedRef<T>
function isComputed(o: any): o is ComputedRef {
return !!(isRef(o) && o.effect)
}
```

</details>

### 缺失的 API

以下在 Vue 3 新引入的 API ,在本插件中暂不适用:
Expand Down

0 comments on commit 73524d2

Please sign in to comment.