@@ -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'
})
```