Skip to content

Instantly share code, notes, and snippets.

@AlexandreBonaventure
Last active February 20, 2017 19:21
Show Gist options
  • Save AlexandreBonaventure/3bccc5109bbd403d2478e1eb83b252a0 to your computer and use it in GitHub Desktop.
Save AlexandreBonaventure/3bccc5109bbd403d2478e1eb83b252a0 to your computer and use it in GitHub Desktop.
[vuex 1.0] utils
import { mapValues } from 'lodash4'
export function namespace(prefix, getters) {
return mapValues(getters, v =>
(state) => {
const subState = state[prefix]
return v(subState)
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment