Vue did you register the component correctly? For recursive components,make sure to provide the name

  • Post author:
  • Post category:vue

问题截图

在这里插入图片描述

组件嵌套

App
  MyComponent
   ADifferentComponent
     MyComponent

问题原因

这里的问题是,MyComponent既是它自己的父组件,又是它自己的子组件。这将使Vue陷入一个循环,每个组件都依赖于另一个组件。

解决方案

  components:{
     'feed-item': ()=> import('./FeedItem.vue')
  }

参考地址

https://stackoverflow.com/questions/49154490/did-you-register-the-component-correctly-for-recursive-components-make-sure-to


版权声明:本文为qq1154479896原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。