File size: 203 Bytes
09a6f7f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import actions from './actions.js';
import mutations from './mutations.js';
import state from './state.js';
import Store from './store.js';

export default new Store({
  actions,
  mutations,
  state
});