Skip to content

Commit 89be95d

Browse files
committed
There is no getters.md
1 parent 2c5b08d commit 89be95d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/en/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ console.log(store.state.count) // -> 1
4141

4242
Again, the reason we are dispatching a mutation instead of changing `store.state.count` directly, is because we want to explicitly track it. This simple convention makes your intention more explicit, so that you can reason about state changes in your app better when reading the code. In addition, this gives us the opportunity to implement tools that can log every mutation, take state snapshots, or even perform time travel debugging.
4343

44-
Now this is just the simplest possible example of what a store is. But Vuex is more than just the store. Next, we will discuss some core concepts in depth: [State](state.md), [Mutations](mutations.md), [Actions](actions.md) and [Getters](getters.md).
44+
Now this is just the simplest possible example of what a store is. But Vuex is more than just the store. Next, we will discuss some core concepts in depth: [State](state.md), [Mutations](mutations.md) and [Actions](actions.md).

0 commit comments

Comments
 (0)