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

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