You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nuxt is applying a data-v-inspector prop to every component, though none expect it.
Vue 3 logs the following to the server console in development, plus a Vue component tree, which can be very noisy and make it difficult to find more important output.
[Vue warn]: Extraneous non-props attributes (data-v-inspector) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.
Additional context
Some Vue components do not render DOM nodes themselves, but instead act as wrappers of some sort, and delegate rendering through to a slot. This kind of component is subject to the Vue extraneous props warning.
A workaround is to disable devtools entirely or set devtools: { enabled: true, componentInspector: true }, in the nuxt config.
Logs
No response
The text was updated successfully, but these errors were encountered:
Environment
Darwin
v18.15.0
3.13.2
3.13.2
2.9.7
yarn@3.6.1
-
-
-
-
Reproduction
https://stackblitz.com/edit/github-psuobu
Describe the bug
Nuxt is applying a
data-v-inspector
prop to every component, though none expect it.Vue 3 logs the following to the server console in development, plus a Vue component tree, which can be very noisy and make it difficult to find more important output.
Additional context
devtools: { enabled: true, componentInspector: true },
in the nuxt config.Logs
No response
The text was updated successfully, but these errors were encountered: