did you register the component correctly? For recursive components, make sure to provide the "name" option.
时间: 2023-11-03 21:02:15 浏览: 108
vue component组件使用方法详解
这个报错是因为组件注册的方式不正确导致的。当使用递归组件时,需要确保提供了"name"选项。你可以检查一下你的组件注册方式是否正确,确保组件先于Vue实例化引入。如果你已经确认注册方式正确,可能是因为你的组件被多个父组件同时调用了。你可以尝试按照下面的方式在components中写入你的组件:
components: {
Navbar: () => import('./components/Navbar'),
content: () => import('./components/content')
}
阅读全文