vue.js: [Vue warn]: Unknown custom element: - did you register the component correctly?

我的原错误为:
vue.js:634 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option.
源码:




    
    parent




错误原因:
HTML 中的标签名是大小写不敏感的,所以浏览器会把所有大写字符解释为小写字符。这意味着当你使用 DOM 中的模板时,使用驼峰命名法 的 prop 名需要使用其等价的短横线分隔命名方法或者全部使用小写。否者就会报上述错误。

改正后的代码:




    
    parent




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