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 cf6e9c0 commit e705508Copy full SHA for e705508
docs/guide/migration/breaking10.md
@@ -378,7 +378,7 @@ const i18n = createI18n({
378
legacy: true,
379
// something options ...
380
})
381
-console.log(i18n.global.t('banana', 2, ['dio']))
+console.log(i18n.global.tc('banana', 2, ['dio']))
382
```
383
384
Vue I18n v10 or later:
@@ -412,7 +412,7 @@ const i18n = createI18n({
412
413
414
415
-console.log(i18n.global.tc('banana', { name: 'dio' }, 2))
+console.log(i18n.global.t('banana', { name: 'dio' }, 2))
416
417
418
### `$tc(key: Key): TranslateResult;`
0 commit comments