The mapGetters helper simply maps store getters to local computed properties: import { mapGetters } from ‘vuex’ export default { // … computed: { // mix the getters into computed with object spread operator … mapGetters([ ‘doneTodosCount’, ‘anotherGetter’, // … ]) } }