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