mescroll-i18n.js 299 B

123456789101112131415
  1. // 国际化工具类
  2. const mescrollI18n = {
  3. // 默认语言
  4. def: "zh",
  5. // 获取当前语言类型
  6. getType(){
  7. return uni.getStorageSync("mescroll-i18n") || this.def
  8. },
  9. // 设置当前语言类型
  10. setType(type){
  11. uni.setStorageSync("mescroll-i18n", type)
  12. }
  13. }
  14. export default mescrollI18n