Cleanup storage code

This allows us to use either session or local storage, for issue #120.
This commit is contained in:
N-Pex 2021-05-10 11:13:22 +02:00
parent af04dd39f7
commit 0ac3cefb03
9 changed files with 144 additions and 89 deletions

View file

@ -1,8 +1,8 @@
import Vue from 'vue'
import App from './App.vue'
import vuetify from './plugins/vuetify';
import router from './router'
import store from './store'
import router from './router'
import matrix from './services/matrix.service'
import navigation from './services/navigation.service'
import cleaninsights from './services/cleaninsights.service'
@ -151,8 +151,8 @@ Vue.use(navigation, router);
new Vue({
vuetify,
router,
store,
router,
matrix,
cleaninsights,
render: h => h(App)