Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ declare module 'vue' {
/**
* The Vue Plugin. to be used on your Vue app like this: `app.use(i18nVue)`
*/
export const i18nVue: Plugin = {
export const i18nVue = {
install(app, options: PluginOptionsInterface = {}) {
options = { ...DEFAULT_PLUGIN_OPTIONS, ...options }

Expand All @@ -134,7 +134,7 @@ export const i18nVue: Plugin = {

app.provide('i18n', i18n)
}
}
} satisfies Plugin;

/**
* The I18n class. Encapsulates all language loading and translation logic.
Expand Down