ui: add B2B olmayan stok (orphans) page

This commit is contained in:
M_Kececi
2026-06-25 14:14:23 +03:00
parent 52b39725ec
commit dfad548963
19 changed files with 594 additions and 71 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
import { boot } from 'quasar/wrappers'
import { useLocaleStore } from 'src/stores/localeStore'
import { useRuntimeTranslationStore } from 'src/stores/runtimeTranslationStore'
export default boot(() => {
export default boot(async () => {
const localeStore = useLocaleStore()
localeStore.setLocale(localeStore.locale)
const runtimeTranslations = useRuntimeTranslationStore()
await runtimeTranslations.loadLocale(localeStore.locale)
})