NUXT_E7010

callOnce key must be a string.

E7010

callOnce() was called with a key that is not a string. The key is used to track whether the function has already run, so it must be a non-empty string.

Resolution

await callOnce('setup', () => {
  // runs once
})
Read more in Docs > API > Utils > Call Once.
Was this helpful?