Generalized filters bar, added to network page.

This commit is contained in:
2019-11-15 02:37:17 +01:00
parent 23492bb5d0
commit 0575dbc7e4
17 changed files with 193 additions and 113 deletions

15
assets/js/ui/ui.js Normal file
View 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;