Ver Fonte

Update state.md (#140)

Ryan Dobbs há 9 anos atrás
pai
commit
5435e3586d
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      docs/en/state.md

+ 1 - 1
docs/en/state.md

@@ -101,7 +101,7 @@ computed: {
 
 ### 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
 vuex: {