Generalized filters bar, added to network page.
This commit is contained in:
15
assets/js/ui/ui.js
Normal file
15
assets/js/ui/ui.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import state from './state';
|
||||
import mutations from './mutations';
|
||||
import getters from './getters';
|
||||
import actions from './actions';
|
||||
|
||||
function initUiStore(store, router) {
|
||||
return {
|
||||
state,
|
||||
mutations,
|
||||
getters,
|
||||
actions: actions(store, router),
|
||||
};
|
||||
}
|
||||
|
||||
export default initUiStore;
|
||||
Reference in New Issue
Block a user