mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
Hotfix: ładowanie strony
This commit is contained in:
+1
-1
@@ -92,7 +92,7 @@
|
||||
import Clock from '@/components/App/Clock.vue';
|
||||
|
||||
import StorageManager from '@/scripts/managers/storageManager';
|
||||
import { computed, ComputedRef, defineComponent, provide, reactive, Ref, ref } from 'vue';
|
||||
import { computed, ComputedRef, defineComponent, provide, ref } from 'vue';
|
||||
import { GETTERS } from './constants/storeConstants';
|
||||
import { StoreData } from './scripts/interfaces/StoreData';
|
||||
import { useStore } from './store';
|
||||
|
||||
+4
-1
@@ -1,6 +1,7 @@
|
||||
import { createApp, Directive } from 'vue'
|
||||
import { createApp, Directive, ref } from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import { store, key } from './store'
|
||||
|
||||
import enLang from '@/locales/en.json';
|
||||
import plLang from '@/locales/pl.json';
|
||||
@@ -33,6 +34,8 @@ const clickOutsideDirective: Directive = {
|
||||
}
|
||||
|
||||
createApp(App)
|
||||
.provide('isFilterCardVisible', ref(false))
|
||||
.use(store, key)
|
||||
.use(router)
|
||||
.use(i18n)
|
||||
.directive('click-outside', clickOutsideDirective)
|
||||
|
||||
Reference in New Issue
Block a user