index.js 218 B

12345678910
  1. import Store from './store';
  2. import states from './states';
  3. import actions from './actions';
  4. import mutations from './mutations';
  5. const store = new Store({
  6. states,
  7. actions,
  8. mutations
  9. })
  10. export default store