Skip to content

vue-i18n / general / ComposerCustom

接口:ComposerCustom

Composer 的类型自定义定义

备注

可以扩展 Composer 的接口。

由第三方(例如 nuxt/i18n)定义的类型

示例

ts
// vue-i18n.d.ts (应用程序中的 `.d.ts` 文件)

declare module 'vue-i18n' {
  interface ComposerCustom {
    localeCodes: string[]
  }
}

Vue I18n 组合式 API

扩展者