food/src/store/getters.js

7 lines
172 B
JavaScript
Raw Normal View History

2017-09-22 03:07:34 +02:00
// TODO: Shouldn't we use mapState/mapGetters?
2017-09-19 04:28:26 +02:00
export default {
product: state => state.product,
isLoading: state => state.isLoading,
2017-09-22 03:07:34 +02:00
ui: state => state.ui,
2017-09-19 04:28:26 +02:00
};