我无法更改标签文本。有什么解决办法吗?
问问题
138 次
1 回答
0
自定义文本和添加语言翻译可以通过 I18n 模块完成:
import { I18n } from "aws-amplify";
import { Translations } from "@aws-amplify/ui-components";
I18n.putVocabulariesForLanguage("en-US", {
[Translations.SIGN_IN_HEADER_TEXT]: "Custom Sign In Header Text",
[Translations.SIGN_IN_ACTION]: "Custom Click Here to Sign In"
});
所有可翻译字符串的完整列表可以在Translations.ts中找到。
来源:https ://docs.amplify.aws/ui/customization/translations/q/framework/vue
于 2021-05-12T07:22:04.560 回答