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: 21ebfb22e2e4b3fd37b256c9ac16bafc104e5b78 (plain)
1
2
3
4
5
6
7
8
9
10
import * as actions from './actions';
import mutations from './mutations';
import state from './state';

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