简单使用 Vue-i18n (Vue3版本)

DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Documenttitle>
    head>

    <body>
        <div id="app">
            <p>{{ $t("one.index", { mag: "我的"}) }}p>
        div>
    body>
    <script src="https://unpkg.com/[email protected]/dist/vue.global.js">script>
    <script src="https://unpkg.com/[email protected]/dist/vue-i18n.global.js">script>
    <script>
        const i18n = VueI18n.createI18n({
            // new VueI18n() 可以对Vue 容器进行全局配置也可以, 只在当前组件容器中进行配置
            // locale 和 messages 字段也是固定的, 只有 messages 内部的字段是自定义的
            locale: "cn",
            messages: {
                cn: {
                    one: {
                        // 这是 "具名格式", 直接通过属性名, 来进行引用
                        // HTML 示例: 

{{ $t("one.index", { mag: "我的"}) }}

index: "你好 {mag} 世界", // {mag} 从 $t() 函数调用时获取指定的变量, }, }, en: { one: { // 这是利用数组参数, 来形成的 "列表格式" // HTML 示例:

{{ $t("one.index", ["我的"]) }}

index: "hello {0} world", // {0} 从 $t() 函数调用时获取指定的变量 }, }, ja: { one: { // 这是复数形式, 函数也从 $t() 变成了 $tc() // HTML 示例:

{{ $tc("one.index", 1) }}

结果: 这是我的世界
index: "こんにちは、 世界 | 这是我的世界 | 这是你的世界", // {mag} 从 $tc() 函数调用时获取指定的变量 }, }, jw: { one: { // 这是复数形式和具名格式的组合使用, 函数也从 $t() 变成了 $tc() // HTML 示例:

{{ $tc("one.index", 2, {mas: "这是"}) }}

结果: 这是你的世界
index: "こんにちは、{mas} 世界 | 这是我的世界 | {mas}你的世界", // {mag} 从 $tc() 函数调用时获取指定的变量 }, }, }, }); const app = Vue.createApp({ data() { return {}; }, }); app.use(i18n); app.mount("#app");
script> html> $te(key, locale) 使用指定的 locale 语言库

你可能感兴趣的:(vue.js,javascript,前端)