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

index.js « show « store « user_lists « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0f00428b6c463fc50f36252511677e11f6b93ba (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 * as actions from './actions';
import mutations from './mutations';
import createState from './state';

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