报错:Failed to set an indexed property on ‘CSSStyleDeclaration‘: Index property setter is not sup

遇到问题

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}`}}