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
Suppress "Extraneous non-props attributes (prop) were passed to component but could not be automatically inherited because component renders fragment or text root nodes." #3061
When conditionally rendering parent component, but still want to keep the children elements, I found the new fragment pattern could meet this need. When deliberately render fragment, I don't want vue to warn the extra props being passed since they might be used by custom-component. I don't know if there's a better way to achieve this.