mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-29 20:11:53 +03:00
✨ Implementing VueX
This commit is contained in:
parent
362db365bb
commit
41682c8914
@ -14,6 +14,7 @@ import Toasted from 'vue-toasted'; // Toast component, used to show confirm
|
||||
// Import base Dashy components and utils
|
||||
import Dashy from '@/App.vue'; // Main Dashy Vue app
|
||||
import router from '@/router'; // Router, for navigation
|
||||
import store from '@/store'; // Store, for local state management
|
||||
import serviceWorker from '@/utils/InitServiceWorker'; // Service worker initialization
|
||||
import clickOutside from '@/utils/ClickOutside'; // Directive for closing popups, modals, etc
|
||||
import { messages } from '@/utils/languages'; // Language texts
|
||||
@ -63,7 +64,9 @@ if (!isKeycloakEnabled()) {
|
||||
window.location.reload();
|
||||
} else {
|
||||
// Yay - user successfully authenticated with Keycloak, render the app!
|
||||
new Vue({ router, render, i18n }).$mount('#app');
|
||||
new Vue({
|
||||
router, store, render, i18n,
|
||||
}).$mount('#app');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user