Vue3报错:Failed to resolve component: xxx
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
翻译:无法解析组件:xxx
如果这是本机自定义元素,请确保通过compiler Options.is Custom Element将其从组件解析中排除。
网上找了很多博客,都没有解决问题,最后发现是setup没加上
<script setup>
参考:文章来源:https://www.toymoban.com/news/detail-531383.html
网上有很多出现此报错的原因是import没写对
比如 import xx from '路径'
写成了import {xx} from '路径'
,原因是混淆了引入组件和引入组件中的方法文章来源地址https://www.toymoban.com/news/detail-531383.html
到了这里,关于Vue3报错:Failed to resolve component: xx If this is a native custom element, make sure to exclude it f的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!