Selaa lähdekoodia

[en] small format fixes (#950)

勾三股四 7 vuotta sitten
vanhempi
commit
4ac5c170e9
4 muutettua tiedostoa jossa 3 lisäystä ja 4 poistoa
  1. 1 1
      docs/en/actions.md
  2. 0 1
      docs/en/forms.md
  3. 0 1
      docs/en/getters.md
  4. 2 1
      docs/en/mutations.md

+ 1 - 1
docs/en/actions.md

@@ -108,7 +108,7 @@ export default {
   methods: {
     ...mapActions([
       'increment', // map `this.increment()` to `this.$store.dispatch('increment')`
-      
+
       // `mapActions` also supports payloads:
       'incrementBy' // map `this.incrementBy(amount)` to `this.$store.dispatch('incrementBy', amount)`
     ]),

+ 0 - 1
docs/en/forms.md

@@ -58,4 +58,3 @@ computed: {
   }
 }
 ```
-

+ 0 - 1
docs/en/getters.md

@@ -78,7 +78,6 @@ getters: {
 store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }
 ```
 
-
 ### The `mapGetters` Helper
 
 The `mapGetters` helper simply maps store getters to local computed properties:

+ 2 - 1
docs/en/mutations.md

@@ -48,6 +48,7 @@ mutations: {
   }
 }
 ```
+
 ``` js
 store.commit('increment', {
   amount: 10
@@ -147,7 +148,7 @@ export default {
   methods: {
     ...mapMutations([
       'increment', // map `this.increment()` to `this.$store.commit('increment')`
-      
+
       // `mapMutations` also supports payloads:
       'incrementBy' // map `this.incrementBy(amount)` to `this.$store.commit('incrementBy', amount)`
     ]),