11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
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()
|
|
})
|