Is there a way to pass parameter into getter of vuex
store
?
Something like:
new Vuex.Store({
getters: {
someMethod(arg){
// return data from store with query on args
}
}
})
So that in component I could use
<template>
<div>
<p>{{someMethod(this.id)}}</p>
</div>
</template>
<script lang="ts">
import { mapGetters } from "vuex"
export default {
props: ['id'],
computed: mapGetters(['someMethod'])
}
}
</script>
but in vuex first argument is state
and second is other getters
. Is it possible?
One way to do this can be:
However, getter does not take arguments and why is explained in this thread:
Edit:
A better way to achieve the same thing will be using ES6 arrow as detailed out in the answer of nivram80, using method style getters where you can pass a parameter by returning a function form the getter: