fix locale handling
This commit is contained in:
parent
84b488a912
commit
c6cfc3f908
|
@ -145,6 +145,7 @@ export default defineComponent({
|
||||||
watch: {
|
watch: {
|
||||||
lang() {
|
lang() {
|
||||||
localStorage.setItem('lang', this.lang);
|
localStorage.setItem('lang', this.lang);
|
||||||
|
localStorage.removeItem('locale');
|
||||||
location.reload();
|
location.reload();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
import { I18n } from '@/i18n';
|
import { I18n } from '@/i18n';
|
||||||
|
|
||||||
export const i18n = new I18n(_LOCALE_);
|
export const i18n = new I18n({
|
||||||
|
// TODO
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue