当前位置: 首页 > 工具软件 > i18next > 使用案例 >

i18next 插槽颜色标记

井疏珂
2023-12-01

使用i18next颜色添加 一些颜色标记

引用文档

废话不多说上代码

import { useTranslation, Trans } from 'react-i18next';

                    <Trans                            //这块会加粗
						i18nKey="你确定要{{operate}}<0>{{info}}</0>此条数据"    //键名
						values={{ operate: title, info: `${detail.name} (${detail.mailAccount})` }}  //参数值
						components={[<strong className="blue" key='info'></strong>]}  //颜色的配置
					/>

也可以采用其他方案,不限,官网都有案例

 类似资料: