Skip to content

Instantly share code, notes, and snippets.

@giolvani
Created February 22, 2019 13:17
Show Gist options
  • Save giolvani/ff97b14cadf339cacb90794902fe66b5 to your computer and use it in GitHub Desktop.
Save giolvani/ff97b14cadf339cacb90794902fe66b5 to your computer and use it in GitHub Desktop.
Vuex getter with parameter
getters: {
foo(state) {
return (bar) => {
return bar;
}
}
}
export default {
name: 'MyComponent',
computed: {
...mapGetters(['foo'])
},
mounted() {
console.log(this.foo('hello')); // logs "hello"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment