vue3出现此警告信息:[Vue warn]: Failed to resolve component: dpan
警告内容:runtime-core.esm-bundler.js:6870 [Vue warn]: Failed to resolve component: dpan原因:问题出现的原因是因为,你导入了组件,但是没有使用它,才引起的警告比如:<script lang="ts" setup>import { a } from 'xxxx';</script>但是在<te
·
警告内容:
runtime-core.esm-bundler.js:6870 [Vue warn]: Failed to resolve component: dpan
原因:
问题出现的原因是因为,你导入了组件,但是没有使用它,才引起的警告
比如:
<script lang="ts" setup>
import { a } from 'xxxx';
</script>
但是在 <template></template> 你并有使用 a 这个组件
更多推荐
已为社区贡献5条内容
所有评论(0)