Skip to content

Instantly share code, notes, and snippets.

@ansidev
Created May 27, 2019 10:51
Show Gist options
  • Save ansidev/f7d3203ff98e5e33c415fda95c58b44f to your computer and use it in GitHub Desktop.
Save ansidev/f7d3203ff98e5e33c415fda95c58b44f to your computer and use it in GitHub Desktop.
Vuex Store
export const actions = {
foo: async ({ commit }, data) => {
commit('foo', data)
},
bar: async ({}, data) => {
return data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment