Nuxtjs Guideline: State — Use callOnce for one-time async operations. Description: Ensure async operations run only once. Do: callOnce for store initialization. Don't: Direct await in component. Good Example: await callOnce(store.fetch). Bad Example: await store.fetch() on every render. Severity: Medium. Docs: https://nuxt.com/docs/api/utils/call-once.