summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/list/store/index.js
blob: 968b94f0e0d3784fb820762a3bffa0e75bc5c909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Vue from 'vue';
import Vuex from 'vuex';
import state from './state';
import * as actions from './actions';
import mutations from './mutations';

Vue.use(Vuex);

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