mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-28 00:22:05 +00:00
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
export default function ({ app, store, params, error }) {
|
|
const locale = params.lang || 'en-US'
|
|
store.commit('SET_LANG', locale)
|
|
app.$i18n.locale = store.state.locale
|
|
}
|