vue3[Vue warn]: Failed to resolve component: XXX If this is a native custom element, make sure to ex

vue3[Vue warn]: Failed to resolve component: XXX If this is a native custom element, make sure to ex,第1张

自定义标签存在,但是没有渲染

报错:

原因:
改正前:

<script>
import {milldeLayoutInMain} from "../../components/home/main/milldeLayoutInMain"
export default {
     name: 'MainPage',
     components:{
          milldeLayoutInMain
     }
}
script>

改正后

<script>
import milldeLayoutInMain from "../../components/home/main/milldeLayoutInMain"
export default {
     name: 'MainPage',
     components:{
          milldeLayoutInMain
     }
}
script>

效果:

**

结论:引入单个自定义组件,不加{ }。

**

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/946336.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存