# showShareView

分享,弹窗原生拉起

# 请求参数

Prop Type Required Default Description
url String Y - 分享链接
title String Y - 页面标题

# 参数代码示例

// 显示分享视图
this.$bridge.showShareView({
    url: 'https://example.com/share',
    title: '分享标题'
}).then(res => {
    console.log(res)
})
1
2
3
4
5
6
7