您的位置:首页 > 科技 > IT业 > 广州网页设计学校有哪些_北京网站建设公司兴田德润实惠_在线工具_百度搜索词排名

广州网页设计学校有哪些_北京网站建设公司兴田德润实惠_在线工具_百度搜索词排名

2025/4/3 8:44:37 来源:https://blog.csdn.net/wusandaofwy/article/details/145927687  浏览:    关键词:广州网页设计学校有哪些_北京网站建设公司兴田德润实惠_在线工具_百度搜索词排名
广州网页设计学校有哪些_北京网站建设公司兴田德润实惠_在线工具_百度搜索词排名

1.有两种类名方法

import React from 'react';
import styles from './index.less';
const Home: React.FC = () => {return (<div><h1 className='main'>Welcome to the Home Page</h1><p  className={styles.list}>This is a simple home page.</p></div>);
};export default Home;

2.同时使用时会报错

3.解决方法 

3.1字符串拼接(基础方式)​

import React from 'react';
import styles from './index.less';
const Home: React.FC = () => {return (<div><h1 className={`${styles.list} main`} >Welcome to the Home Page</h1><p className={styles.list}>This is a simple home page.</p></div>);
};export default Home;

3.2classnames 库(推荐方案)​

npm install classnames @types/classnames
import React from 'react';
import styles from './index.less';
import classnames from 'classnames';
const Home: React.FC = () => {return (<div><h1 className={classnames(styles.list,'main')} >Welcome to the Home Page</h1><p className={styles.list}>This is a simple home page.</p></div>);
};export default Home;

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com