Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Created January 15, 2019 10:48
Show Gist options
  • Save c0depanda/85efd47297e8f78d67c2b454ad7a5e54 to your computer and use it in GitHub Desktop.
Save c0depanda/85efd47297e8f78d67c2b454ad7a5e54 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Vuex from 'vuex'
import state from './state'
import getters from './getters'
import mutations from './mutations'
import actions from './actions'
Vue.use(Vuex)
export default new Vuex.Store({
state,
getters,
mutations,
actions
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment