vue注入元件時報錯:did you register the component correctly? For recursive components......

佳佳的�發表於2020-10-22

報錯資訊:
在這裡插入圖片描述
vue.runtime.esm.js?2b0e:619 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.

找原因:

查了很多,大多數都是說components拼寫錯誤,或者寫了兩個components。這個也需要檢查一下,但是我這邊是沒有這樣的問題的,再查資料發現,有元件迴圈引用的問題:
迴圈呼叫元件時,元件比vue例項後建立,官方文件中提到元件必須先於例項化引入。所以是引入的問題。

解決:

原來的寫法:
在這裡插入圖片描述
修改為在這裡插入圖片描述

相關文章