【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:註冊組件出錯。

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