2019-08-08 11:29:03 +08:00
|
|
|
import Cookies from 'js-cookie';
|
|
|
|
|
|
|
|
const I18N_LANG = 'user_lang';
|
|
|
|
export default {
|
2019-11-12 13:44:10 +08:00
|
|
|
setLang(lang) {
|
|
|
|
Cookies.set(I18N_LANG, lang);
|
|
|
|
window.location.reload();
|
|
|
|
},
|
|
|
|
getLang(defaultLang) {
|
|
|
|
const localLang = Cookies.get(I18N_LANG);
|
2019-08-08 11:29:03 +08:00
|
|
|
|
2019-11-12 13:44:10 +08:00
|
|
|
if (localLang == null) {
|
|
|
|
return defaultLang;
|
|
|
|
} else {
|
|
|
|
return localLang;
|
|
|
|
}
|
|
|
|
}
|
2019-08-08 11:29:03 +08:00
|
|
|
};
|