food/src/store/getters.js

6 lines
131 B
JavaScript
Raw Normal View History

2017-09-19 04:28:26 +02:00
export default {
product: state => state.product,
isLoading: state => state.isLoading,
2017-09-20 04:11:40 +02:00
title: state => state.title,
2017-09-19 04:28:26 +02:00
};