Vue3报错:Extraneous non-props attributes (style) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.
翻译是:无关的非道具属性(样式)被传递给组件,但由于组件呈现片段或文本根节点而无法自动继承。
出现这个错误的原因是在组件的节点上添加了样式,也就是
<组件 style='display:none'></组件>
我本来的思路是想让这个组件隐藏起来的,但这样行不通文章来源:https://www.toymoban.com/news/detail-582125.html
所以解决办法就是在组件外套一层div,即文章来源地址https://www.toymoban.com/news/detail-582125.html
<div style='display:none'>
<组件></组件>
</div>
到了这里,关于Vue3报错:Extraneous non-props attributes (style) were passed to component but could not be automatical的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!