fix langs

This commit is contained in:
2025-06-25 21:19:40 +02:00
parent 9d7fd3d52a
commit edf3036e6a
24 changed files with 266 additions and 776 deletions

10
plugins/02_initLoad.ts Normal file
View File

@ -0,0 +1,10 @@
import { defineNuxtPlugin } from "#app";
export default defineNuxtPlugin(async () => {
const menuStore = useMenuStore();
await menuStore.loadMenu();
await menuStore.getLocales();
const store = useStore();
await store.getMinValue();
await store.getCalculator();
});