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

这个错误是在学习Vue的时候报的。

原因很简单,就是你使用Vue.component的时候,自定义的标签名不符合规则

标签名修改为小写,即可。

报错:

Vue.component("greeTing",{ // 只能是小写的
	template:"

彭珂

" })

改为:

Vue.component("greeting",{ // 只能是小写的
	template:"

彭珂

" })

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

 

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

学习资料下载

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

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