Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
docs: 错别字
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Nov 11, 2019
1 parent 79d8f66 commit 8ddc5ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advanced-guide/implementation-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ interface VNode {
}
```

- `id` - 节点 id,这是一个自增的唯一 id,用于标示节点
- `id` - 节点 id,这是一个自增的唯一 id,用于标识节点
- `container` - 类似 `ReactDOM.render(<App />, document.getElementById('root')` 中的第二个参数,Remax 中会把组件渲染到一个容器中,容器的作用是保存 `VNode` 的引用。
- `children` - 子节点。
- `mounted`- 标示节点是否已经显示到视图层上
- `mounted`- 标识节点是否已经显示到视图层上
- `type` - 节点的类型,也就是小程序中的基础组件,如:`view``text`等等。
- `props` - 节点的属性。
- `parent` - 父节点。
Expand Down

1 comment on commit 8ddc5ea

@vercel
Copy link

@vercel vercel bot commented on 8ddc5ea Nov 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.