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

index.js « store « code_navigation « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f9a21c0514d3aeb2030d5b3183e3c184f196ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// eslint-disable-next-line no-restricted-imports
import Vuex from 'vuex';
import actions from './actions';
import mutations from './mutations';
import createState from './state';

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