1👍
I think that you don’t need:
options() {
return this['getListByPrice']
},
priceMin() {
return this['getPriceMin']
},
priceMax() {
return this['getPriceMax']
},
Just use the items in …mapGetters directly in your mustache tags. Also, use vue’s chrome plugin to examine your vuex store.
You posted your vuex store so this comment addresses that. Your store is incorrect. price should be in your store, not priceMax and priceMin. Those are mutations of the state. Please read through the vuex docs.
Source:stackexchange.com