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,

   }
上一篇下一篇

猜你喜欢

热点阅读