【Vue报错】did you register the component correctly

问题描述:Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.

报错截图
报错原因1::是因为暴露组件的时候加了组件扩展名,导致未识别。

//错误写法:
export default {
  name: 'xxx.vue'
}
//正确写法
export default {
  name: 'xxx'
}

报错原因2:未导入组件

//	需添加
import Loading from './components/xxx'

报错原因3:注册组件出错。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章