summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/filtered_search_bar/store/modules/filters/index.js
blob: cdcbecdd313d0be260d1ff272af5013b165bbde1 (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,
  actions,
  mutations,
  state: state(),
};