mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
export const state = () => ({
|
|
locales: ['en', 'fr'],
|
|
locale: 'en'
|
|
})
|
|
|
|
export const mutations = {
|
|
SET_LANG(state, locale) {
|
|
if (state.locales.indexOf(locale) !== -1) {
|
|
state.locale = locale
|
|
}
|
|
}
|
|
}
|