遇到问题

Failed to set an indexed property on 'CSSStyleDeclaration': Index property setter is not sup

原因:div中使用的使用应该是使用className = ,误写成style =

解决办法:排查style =的所有代码:

// 错误写法
style={style.name}
className={margin:`${heightCount}`}

// 正确写法
className={style.name}
style={{margin:`${heightCount}`}}

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐