We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5048db7 commit a475456Copy full SHA for a475456
docs/en/tutorial.md
@@ -250,7 +250,7 @@ You might be wondering - why did we choose to use a getter instead of directly a
250
251
1. We may want to define getters with computed values (think totals, averages, etc.).
252
2. Many components in a larger app can use the same getter function.
253
-3. If the value is moved from say `store.count` to `store.counter.value` you'd have to update one getter instead of dozens of components.
+3. If the value is moved from say `store.state.count` to `store.state.counter.value` you'd have to update one getter instead of dozens of components.
254
255
These are a few of the benefits of using getters.
256
0 commit comments