9 lines
260 B
TypeScript
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();
|
|
}); |