Vue3 - i18n - 你是 运行 vue-i18n 的 esm-bundler 构建
Vue3 - i18n - You are running the esm-bundler build of vue-i18n
我刚刚用 Vue3 开始了一个新项目并添加了 vue-i18n
版本 9 (https://vue-i18n.intlify.dev/guide/)
我已设置,但我无法更改语言。它正在进行翻译,因为它将 {{ $t('message.value') }}
更改为正确的句子。
我无法更改语言,仅适用于语言环境。
我在浏览器控制台中收到此错误消息
You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean literals to get proper tree-shaking in the final bundle.
这是我的配置,但我无法将其更改为西班牙语
const i18n = VueI18n.createI18n({
locale: 'en', // set locale
fallbackLocale: 'en', // set fallback locale
messages, // set locale messages
})
如果你能帮助我,告诉我我做错了什么,我将不胜感激。
非常感谢
当您的应用 运行 处于生产模式时,您不应该看到它。
在 运行 开发时,它已在版本 v2.0.1
中得到更正
我刚刚用 Vue3 开始了一个新项目并添加了 vue-i18n
版本 9 (https://vue-i18n.intlify.dev/guide/)
我已设置,但我无法更改语言。它正在进行翻译,因为它将 {{ $t('message.value') }}
更改为正确的句子。
我无法更改语言,仅适用于语言环境。
我在浏览器控制台中收到此错误消息
You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean literals to get proper tree-shaking in the final bundle.
这是我的配置,但我无法将其更改为西班牙语
const i18n = VueI18n.createI18n({
locale: 'en', // set locale
fallbackLocale: 'en', // set fallback locale
messages, // set locale messages
})
如果你能帮助我,告诉我我做错了什么,我将不胜感激。 非常感谢
当您的应用 运行 处于生产模式时,您不应该看到它。
在 运行 开发时,它已在版本 v2.0.1
中得到更正