We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb92e9 commit f4a15bdCopy full SHA for f4a15bd
packages/vue-i18n/src/i18n.ts
@@ -322,8 +322,8 @@ export function createI18n<
322
// prettier-ignore
323
const __legacyMode = __FEATURE_LEGACY_API__ && isBoolean(options.legacy)
324
? options.legacy
325
- : true
326
- const __globalInjection = __FEATURE_LEGACY_API__ && !!options.globalInjection
+ : __FEATURE_LEGACY_API__
+ const __globalInjection = !!options.globalInjection
327
const __instances = new Map<
328
ComponentInternalInstance,
329
VueI18n<Messages> | Composer<Messages>
0 commit comments