Skip to content

v4.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Oct 03:33
· 50 commits to main since this release

Minor Changes

  • 985b5a0: Added Vue types augmentation to type the global mixin properties

    Mixin-provided global properties like $t, $fmt and $i18n should be properly typed now.

    If you don't use the global mixin, the below augmentation will remove these unusable properties.

    declare global {
      namespace VueIntlController {
        interface Options {
          globalMixin: false
        }
      }
    }