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

index.js « stores « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc8b586964f0abdbbdc6147662a2e8ceccf055d9 (plain)
1
2
3
4
5
6
7
8
9
import Vuex from 'vuex';
import * as getters from './getters';

export default ({ modules, featureFlags }) =>
  new Vuex.Store({
    modules,
    state: { featureFlags },
    getters,
  });