summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/user_lists/store/show/index.js
blob: b30b0b04b9e5f39556cc370cb072f40f3c3aa8c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vuex from 'vuex';
import createState from './state';
import * as actions from './actions';
import mutations from './mutations';

export default initialState =>
  new Vuex.Store({
    actions,
    mutations,
    state: createState(initialState),
  });