summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/router/index.js
blob: 1d5af1d4fe56711309ad84b80bb32ac9185fe003 (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,
  mutations,
  actions,
};