Skip to content

Commit f71a800

Browse files
committed
tweak counter comments
1 parent 3714fd4 commit f71a800

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/counter/store.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ const actions = {
4343
}
4444
}
4545

46-
// A Vuex instance is created by combining the state, the actions,
47-
// and the mutations. Because the actions and mutations are just
48-
// functions that do not depend on the instance itself, they can
49-
// be easily tested or even hot-reloaded (see counter-hot example).
46+
// A Vuex instance is created by combining the state, mutations, actions,
47+
// and getters. Components should prefer interacting with the store via
48+
// getters and actions.
5049
export default new Vuex.Store({
5150
state,
5251
getters: {

0 commit comments

Comments
 (0)