美文网首页
vue自定义组件命名注意点

vue自定义组件命名注意点

作者: CoderZb | 来源:发表于2022-07-03 18:51 被阅读0次

    问题描述

    Unknown custom element: <home-bottom-info-pc> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

    错误写法

     components: {
          homeBottomInfoPC,
    
       }
    

    正确写法

     components: {
          homeBottomInfoPc,
    
       }
    
    • 报错原因:不能有连续两个字母大写,应该采用驼峰的方式命名,所以将homeBottomInfoPC改为homeBottomInfoPc

    相关文章

      网友评论

          本文标题:vue自定义组件命名注意点

          本文链接:https://www.haomeiwen.com/subject/ilekbrtx.html