Skip to content

Instantly share code, notes, and snippets.

@maciejtrzcinski
Created May 28, 2019 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejtrzcinski/210f7db0c87bf97cce4d01989266d10f to your computer and use it in GitHub Desktop.
Save maciejtrzcinski/210f7db0c87bf97cce4d01989266d10f to your computer and use it in GitHub Desktop.
import getters from './getters'
import actions from './actions'
import mutations from './mutations'
const state = {
images: [],
status: null,
};
const namespaced = true;
export default {
namespaced,
state,
getters,
actions,
mutations
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment