# getOSVersion

获取操作系统版本

# 参数代码示例

// 获取操作系统版本
this.$bridge.getOSVersion().then(res => {
    console.log(res)
})
1
2
3
4