-
-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:
setLocale
throwing error when used in plugin (#2777)
* fix: `setLocale` throwing error when used in plugin * test: add regression test for `setLocale` usage from plugins
- Loading branch information
1 parent
a8d5f43
commit 9596bb4
Showing
3 changed files
with
39 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { defineNuxtPlugin } from '#imports' | ||
|
||
export default defineNuxtPlugin(async nuxtApp => { | ||
if ('pluginSetLocale' in nuxtApp._route.query) { | ||
const app = useNuxtApp() | ||
await app.$i18n.setLocale('fr') | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters