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: 9b60fc337fe1176ff1b3261151477087ac41233b (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vuex from 'vuex';
import createState from './state';
import actions from './actions';
import mutations from './mutations';

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