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

悠悠 2022-10-21 11:56 157阅读 0赞

错误描述

  1. 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.
  2. found in
  3. ---> <Home> at src/components/Home.vue
  4. <App> at src/App.vue
  5. <Root>

在这里插入图片描述

错误解释

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

解决办法

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

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

发表评论

表情:
评论列表 (有 0 条评论,157人围观)

还没有评论,来说两句吧...

相关阅读