Skip to content

Instantly share code, notes, and snippets.

@sanath-kumar
Created July 22, 2018 15:39
Show Gist options
  • Save sanath-kumar/793dbb42eafc3c060d158cbe74f61bee to your computer and use it in GitHub Desktop.
Save sanath-kumar/793dbb42eafc3c060d158cbe74f61bee to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Vuex from 'vuex'
import Axios from 'axios'
import todos from './modules/todos'
Vue.use(Vuex);
export const store = new Vuex.Store({
state: {},
getters : {},
mutations: {},
actions:{},
modules : {
todos
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment