How to access the getter from another vuex module?

Within a vuex getter I know it is possible to access the state from another vuex module like so: pages: (state, getters, rootState) => { console.log(rootState); } How can I access a getter...