vue组件报错问题
Invalid value for option "components": expected an Object, but got Array出现这个错误,查看一下组件的编写是否有误,components应该是一个对象而不是一个数组,如果你写成了开一个数组,就会报这个错误,同时,还会报下面这个错:did you register the component correctly? Fo
·
Invalid value for option "components": expected an Object, but got Array
出现这个错误,查看一下组件的编写是否有误,components应该是一个对象而不是一个数组,如果你写成了开一个数组,就会报这个错误,同时,还会报下面这个错:
did you register the component correctly? For recursive components, make sure to provide the "name" option
错误示例:
components:[
GoodsTemplate
]
正确示例:
components:{
GoodsTemplate
}
如果不是这种情况造成的,读者可以继续查阅其他相关问题资料。
更多推荐
已为社区贡献14条内容
所有评论(0)