debian-mirror-gitlab/app/assets/javascripts/batch_comments/stores/modules/batch_comments/index.js
2020-06-23 00:09:42 +05:30

13 lines
244 B
JavaScript

import state from './state';
import mutations from './mutations';
import * as actions from './actions';
import * as getters from './getters';
export default () => ({
namespaced: true,
state: state(),
mutations,
actions,
getters,
});