1
ColdBird 2023-03-10 13:00:02 +08:00
i18next 支持插入标签(关键字:Trans ),文本内需要特殊处理的部分使用标签进行管理即可
|
2
acthtml 2023-03-10 13:00:06 +08:00
我不拆开,直接支持特殊字符。
text: "hello <b>world</b>" |
3
weixiangzhe 2023-03-10 13:55:47 +08:00
看你现在用的是什么国,比如我最近的 vue-i18n 你说的这个场景他是支持的
写法 ```vue <i18n-t keypath="数字{n1},数字{n2},数字{n3}" tag="div" pl-8px pr-8px > <template #n1> 22 </template> <template #n2> 3 </template> <template #n3> <span text-bold>666</span> </template> </i18n-t> ``` |
5
baleeny OP |