其他分享
首页 > 其他分享> > Unknown custom element: <el-container> - did you register the component correctly? For recursive co

Unknown custom element: <el-container> - did you register the component correctly? For recursive co

作者:互联网

错误描述

vue.runtime.esm.js?2b0e:619 [Vue warn]: Unknown custom element: <el-container> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

found in

---> <Home> at src/components/Home.vue
       <App> at src/App.vue
         <Root>

在这里插入图片描述

错误解释

出现以上错误的原因是在使用Element-UI的时候未将依赖库的组件进行注册,同样的道理,出现类似报错也有可能是在使用的时候没有注册相应的组件。

解决办法

(Element-UI是按需导入组件,这样能减少冗余)如果要解决以上问题需要找到对应的elemen.js将element的需要使用的组件导入并且注册到全局即可。(同样可以推导,这种类似情况解决方式)

如下图所示:
在这里插入图片描述

标签:el,vue,container,recursive,Unknown,element,组件,custom
来源: https://blog.csdn.net/William_TWG/article/details/116404160