Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « index « store « feature_flags « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96ccb35fa21c737007c0f56a37ab6561c5e940e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vuex from 'vuex';
import * as actions from './actions';
import mutations from './mutations';
import state from './state';

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