Skip to content

在 React 中可以做哪些性能优化?

Posted on:2024年8月10日 at 17:05
// 不推荐
<button style={{ color: 'red' }} />

// 推荐
const style = { color: 'red' }
<button style={style} />

// 不推荐
<button style={this.props.style || {} } />

// 推荐
const defaultStyle = {}
<button style={this.props.style || defaultStyle } />
原文转自:https://fe.ecool.fun/topic/060a3711-75a5-4bb3-bb18-9e6e358da4bf