1. 程式人生 > >- did you register the component correctly? For recursive components, make sure to provid

- did you register the component correctly? For recursive components, make sure to provid

這個錯誤是在學習Vue的時候報的。

原因很簡單,就是你使用Vue.component的時候,自定義的標籤名不符合規則

標籤名修改為小寫,即可。

報錯:

Vue.component("greeTing",{ // 只能是小寫的
	template:"<p>彭珂</p>"
})

改為:

Vue.component("greeting",{ // 只能是小寫的
	template:"<p>彭珂</p>"
})

---------end-----------

>>>---------------------------------------------------<<<

>>>---------------------------------------------------<<<