Vue2 找不到组件名称

前言

项目报错did you register the component correctly? For recursive components, make sure to provide the the "name" options,报错很容易理解,就是组件注册的方式不对,没有注册成功,仔细看了自己组件的注册,发现并没有什么问题

问题

多次调用的组件使用import引入,可以让name不和父组件冲突

解决


components: {
    Navbar: () => import("./components/Navbar"),
    content: () => import("./components/content")
}