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: fe48f3ac7f5070f776e8552529138eecc7cc4e93 (plain)
1
2
3
4
5
6
7
8
9
10
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(),
});