admin 管理员组

文章数量: 887007

i18n 中如何传递参数

  • 首先在 i18n 对应语言文件中配置可传参数:

src/locales/lang/en/component/table.ts

export default {index: 'Index',total: 'total of {total}',
};
  • 然后页面中引入 i18n,并使用
import { useI18n } from '/@/hooks/web/useI18n';const { t } = useI18n();t('component.table.total', { total: 10 })

码字不易,觉得有帮助的小伙伴点个赞鼓励下~

扫描上方二维码关注我的订阅号~

本文标签: i18n 中如何传递参数