filemanager: Only init vue app after we fetch language files to avoid UI shaking

This commit is contained in:
Johannes Zellner
2023-06-26 16:35:07 +02:00
parent 853677ab2e
commit f7ca78a8a6
+1 -1
View File
@@ -65,7 +65,6 @@ const i18n = createI18n({
i18n.global.locale.value = locale; i18n.global.locale.value = locale;
} }
} }
})();
const app = createApp(App); const app = createApp(App);
@@ -75,3 +74,4 @@ app.use(PrimeVue, { ripple: true });
app.use(ConfirmationService); app.use(ConfirmationService);
app.mount('#app'); app.mount('#app');
})();