nuxt-i18n-preferred
Preferred locale for nuxt-i18n.
Add middleware, that save preferred locale between sessions, when user comes back, it will check if preferred locale is set and redirect to it. Redirect works only on root page for now.
Add enhanced preferredPath
method instead of localePath
.
Install
NPM
npm install nuxt-i18n-preferred
Register Nuxt module
// nuxt-config.js
module.exports = {
modules: [
['nuxt-i18n-preferred', {
routesNameSeparator: '___',
languageCookieKey: 'nuxt_i18n_preferred_locale',
detectBrowserLanguage: false,
}],
['nuxt-i18n', {
// options
}],
],
};
Usage
.preferredPath()
First check preferred locale, than check current locale, than check default locale.
In comparison with nuxt-i18n's localePath
, which check only current locale.
<nuxt-link :to="preferredPath('index')">{{ $t('home') }}</nuxt-link>
License
MIT License