Unknown custom element: - did you register the component correctly? For recursive compone

编写插件的时候,引用报错:
在这里插入图片描述
注册组件时出现问题,最终排查发现是props属性后没有加逗号

Vue.component('stepbar', {
	props:[""],
	data: function () {
		return {
		}
	},
	methods: {
	},
	template: `
	
` })

你可能感兴趣的:(VueJs)