Created
November 1, 2017 13:07
-
-
Save sadick254/a39e21309bca9390979102c6021bfd24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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