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: f737e0517fc7428fb46d5ba22c957860d2f0da9f (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),
  });