Files
your-gold/plugins/initLoad.ts
2025-06-04 15:59:23 +02:00

9 lines
260 B
TypeScript

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