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

index.js « modal « modules « vuex_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c349d875c2413904db769e3eed25d011393c7245 (plain)
1
2
3
4
5
6
7
8
9
10
import state from './state';
import mutations from './mutations';
import * as actions from './actions';

export default () => ({
  namespaced: true,
  state: state(),
  mutations,
  actions,
});