Browse Source

upd: setting zh-CN

richard1015 3 years ago
parent
commit
1919d89a97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/packages/locale/index.ts

+ 1 - 1
src/packages/locale/index.ts

@@ -10,7 +10,7 @@ const langs = reactive<Lang>({
   'en-US': new EnUSLang()
 });
 export class Locale {
-  static currentLang = ref('en-US');
+  static currentLang = ref('zh-CN');
   static languages(): Lang {
     return langs[this.currentLang.value];
   }