报错[Vue warn]: Unknown custom element: - did you register the component correctly?

报错信息

vue.runtime.esm.js:619 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.

报错[Vue warn]: Unknown custom element: - did you register the component correctly?_第1张图片

分析

出现这种问题的原因我目前只遇到一种,那就是vue的组件使用错误,具体原因包括以下几种:

  • import语句导入组件时from后面的路径写错
  • 注册组件时括号内的组件名称写错,与import声明的不一致
  • 注册组件关键字components写错导致无法使用
  • 使用组件时名称写错,与注册组件的名字不一致
  • 使用组件时没有使用 / 反斜杠结尾

大致就那么几种错误,lz就是因为吧components写成了comments(提示错误导致)

你可能感兴趣的:(vue,前端)