debian-mirror-gitlab/app/assets/javascripts/ide/stores/modules/pane/index.js

13 lines
244 B
JavaScript
Raw Normal View History

2018-12-05 23:21:45 +05:30
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,
});