Skip to content

Instantly share code, notes, and snippets.

@arunredhu
Created May 19, 2019 03:56
Show Gist options
  • Save arunredhu/b6dbfcfb8dec4d4a5779095fcbb39f67 to your computer and use it in GitHub Desktop.
Save arunredhu/b6dbfcfb8dec4d4a5779095fcbb39f67 to your computer and use it in GitHub Desktop.
import Vue from 'vue';
import Vuex from 'vuex';
import { usersState } from './users';
Vue.use(Vuex);
export default new Vuex.Store({
state: {},
mutations: {},
actions: {},
modules: {
usersState
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment