vue自定义组件命名注意点
2022-07-03 本文已影响0人
CoderZb
问题描述
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