zhangbao hace 7 años
padre
commit
5dec460d1e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/en/getters.md

+ 1 - 1
docs/en/getters.md

@@ -110,7 +110,7 @@ If you want to map a getter to a different name, use an object:
 
 ``` js
 ...mapGetters({
-  // map `this.doneCount` to `store.getters.doneTodosCount`
+  // map `this.doneCount` to `this.$store.getters.doneTodosCount`
   doneCount: 'doneTodosCount'
 })
 ```