# getLanguage

异步获取当前语言信息

# 请求参数

Prop Type Required Default Description
isShowLoading Boolean N false 是否显示loading

# 参数代码示例

// 获取语言信息
const res = await this.$bridge.getLanguage()
// res.language 包含语言代码
const language = this.$getLanguageByCode(res.language)
1
2
3
4