Skip to content

Commit

Permalink
docs(zh): updated (#1614)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinjiang authored and ktsn committed Nov 9, 2019
1 parent 7ca8e62 commit b39c97c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/zh/guide/state.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Vuex 使用**单一状态树**——是的,用一个对象就包含了全部

单状态树和模块化并不冲突——在后面的章节里我们会讨论如何将状态和状态变更事件分布到各个子模块中。

存储在 Vuex 中的数据和 Vue 实例中的 `data` 遵循相同的规则,例如状态对象必须是纯粹 (plain) 的。**参考:**[Vue#data](https://cn.vuejs.org/v2/api/#data)

### 在 Vue 组件中获得 Vuex 状态

那么我们如何在 Vue 组件中展示状态呢?由于 Vuex 的状态存储是响应式的,从 store 实例中读取状态最简单的方法就是在[计算属性](https://cn.vuejs.org/guide/computed.html)中返回某个状态:
Expand Down

0 comments on commit b39c97c

Please sign in to comment.