docs: update omi docs

This commit is contained in:
dntzhang 2019-10-07 14:28:27 +08:00
parent 37f8040a6e
commit 99067ce8c0
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ Without alias, you can also access it directly through `this.store.data.xxx'.
### Path hit rule
| Proxy Path | path in static use | update |
| Proxy Path | path in use | update |
| ---------- | ---------- | -------- |
| abc | abc | true |
| abc[1] | abc | true |

View File

@ -145,7 +145,7 @@ render() {
`store.data` 发生变化,依赖变更数据的组件会进行更新,举例说明 Path 命中规则:
| Proxy Path(由数据更改产生) | static use 中的 path | 是否更新 |
| Proxy Path(由数据更改产生) | use 中的 path | 是否更新 |
| ---------- | ---------- | -------- |
| abc | abc | 更新 |
| abc[1] | abc | 更新 |