Skip to content

Instantly share code, notes, and snippets.

@sadick254
Created November 1, 2017 13:07
Show Gist options
  • Save sadick254/a39e21309bca9390979102c6021bfd24 to your computer and use it in GitHub Desktop.
Save sadick254/a39e21309bca9390979102c6021bfd24 to your computer and use it in GitHub Desktop.
//get all shops
const shops = await this.$store.dispatch('get', {
url: '/shops',
params: {
type: 'all'
},
type: 'GET_SHOPS_SUCCESS'
})
// use your response if you need to
//get user logs
const logs = await this.$store.dispatch('get', {
url: `/users/${userId}/logs`,
canCommit: false
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment