React 开发 | 样式模块化

2022-11-21 08:33:19 浏览数 (1)

1、使用 ES6 实现样式模块化,避免样式冲突 index.module.css

代码语言:javascript复制
.title {
  background: red;
}

Hello.jsx

代码语言:javascript复制
import hello from './index.module.css'

export default class Hello extends Component {
	render() {
    return <h2 className={hello.title}>Hello</h2>
  }
}

2、也可以使用 less 嵌套避免样式冲突

代码语言:javascript复制
.hello {
  .title {
  	background: red;
  }
}

0 人点赞