# openExternalApplication

打开外部应用程序

# 参数代码示例

// 打开外部应用程序
this.$bridge.openExternalApplication({
    packageName: 'com.tencent.mm'
}).then(res => {
    console.log(res)
})
1
2
3
4
5
6