vue-2.5.16.js:597 [Vue warn]: Unknown custom element: - did you register the component corre

vue-2.5.16.js:597 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.

found in

—>

这里,显示你自定义的vue组件没有注册。为你提供一个解决思路,请查看你全局注册中声明注册标签的components是否书写正确,这里很容易发生错误,因为在全局注册时期间出现了两个名为component的单词,但第二个应该在这里加上s,代码如下:

Vue.component('组件名称',{
	template:'封装的HTML代码',
	components:{
	要注册的组件名称,
	}
	})

你可能感兴趣的:(bug)