1
0
Эх сурвалжийг харах

state.md standalone build -> full build (#774)

Alexander Sokolov 8 жил өмнө
parent
commit
7aad4a3843
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      docs/en/state.md

+ 1 - 1
docs/en/state.md

@@ -61,7 +61,7 @@ const Counter = {
 When a component needs to make use of multiple store state properties or getters, declaring all these computed properties can get repetitive and verbose. To deal with this we can make use of the `mapState` helper which generates computed getter functions for us to help us save some keystrokes:
 
 ``` js
-// in standalone builds helpers are exposed as Vuex.mapState
+// in full builds helpers are exposed as Vuex.mapState
 import { mapState } from 'vuex'
 
 export default {