mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
|
export const state = {
|
||
|
locale: 'en-US'
|
||
|
}
|
||
|
|
||
|
export const mutations = {
|
||
|
SET_LANG (state, locale) {
|
||
|
if (['en-US', 'fr-FR'].indexOf(locale) !== -1) {
|
||
|
state.locale = locale
|
||
|
}
|
||
|
}
|
||
|
}
|