将 style 对象转为 htmlElement 上的 style 字符串
一个 style 样式对象
返回一个内联样式字符串
// 将 style 对象转为内联样式字符串const styleString = styleToString({ 'font-size': '12px', color: 'red' })// 输出:"font-size:12px;color:red;"console.log(styleString) Copy
// 将 style 对象转为内联样式字符串const styleString = styleToString({ 'font-size': '12px', color: 'red' })// 输出:"font-size:12px;color:red;"console.log(styleString)
将 style 对象转为 htmlElement 上的 style 字符串