Files
your-gold/plugins/initLoad.ts
2025-06-25 13:53:36 +02:00

8 lines
228 B
TypeScript

import { defineNuxtPlugin } from "#app";
export default defineNuxtPlugin(async () => {
const menuStore = useMenuStore();
await menuStore.loadMenu();
await menuStore.getCountryList();
await menuStore.getCurrencies();
});