debian-mirror-gitlab/app/assets/javascripts/ide/stores/modules/pane/index.js
2018-12-05 23:21:45 +05:30

12 lines
244 B
JavaScript

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