vue-i18n

发布时间 2023-09-12 11:53:19作者: 噬蛇之牙

https://kazupon.github.io/vue-i18n/zh/introduction.html

开始

  • 如果使用模块系统 (例如通过 vue-cli),则需要导入 Vue 和 VueI18n ,然后调用 Vue.use(VueI18n)。

格式化

  • 在某些情况下,你可能希望将翻译呈现为 HTML 信息而不是静态字符串。
    • 在你的网站上动态插入任意 HTML 可能非常危险,因为它很容易导致 XSS 攻击。
const messages = {
  en: {
    message: {
      hello: 'hello <br> world'
    }
  }
}
  • ICU 信息语法
    • 注释:一种用于格式化和解析文本的语法
    • 注释:例如,{gender, select, male {He} female {She} other {They}} will respond shortly. 这个信息可以根据gender的值选择不同的代词,如He will respond shortly.或She will respond shortly.