mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +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
|
|
}
|
|
}
|
|
}
|