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

index.js « gitlab_user_list « 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: 8a38f0686097663dfacff152ce7c28f5bb8acbcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import state from './state';

export default (data) => ({
  state: state(data),
  actions,
  getters,
  mutations,
  namespaced: true,
});