actions.js 225 B

123456789101112
  1. const actions = {
  2. fetchData({ dispatch }) {
  3. dispatch('fetchCompany')
  4. dispatch('fetchCurrencies')
  5. dispatch('fetchProducts')
  6. dispatch('fetchCustomers')
  7. }
  8. }
  9. export default {
  10. actions
  11. }