瀏覽代碼

Update state.md (#140)

Ryan Dobbs 9 年之前
父節點
當前提交
5435e3586d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/en/state.md

+ 1 - 1
docs/en/state.md

@@ -101,7 +101,7 @@ computed: {
 
 
 ### Getters Can Return Derived State
 ### Getters Can Return Derived State
 
 
-Vuex state getters are computed properties under the hood, this means you can leverage them to reactively (and efficiently) compute derived state. For example, say in the state we have an array of `messages` containing all messages, and a `currentThreadID` representing a thread that is currently being viewed by the user. What we want to display to the user is a filtered list of messages that belong to the current thread:
+Vuex state getters are computed properties under the hood, this means you can leverage them to reactively (and efficiently) compute derived state. For example, say in the state we have an array of `messages` containing all messages, and a `currentThreadID` representing a thread that is currently being viewed by the user. What we want to display to the user is a filtered list of messages that belongs to the current thread:
 
 
 ``` js
 ``` js
 vuex: {
 vuex: {