Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 30 Oct 06:13
· 80 commits to main since this release

Patch Changes

  • 6479891: VIntl updated to the latest version

    Latest version of VIntl fixes missing type declarations for global properties, like $t, $fmt and $i18n.

    We might add automatic handling for disabling of controllerOpts.globalMixin in the future releases. You can follow the status update in #74.

    For now, if you disable global mixin, use the below augmentation to disable these unusable properties:

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