SharePlugin.share()
PluginSharePluginshare小于 1 分钟
实现分享的方法
SharePlugin.share(options)
参数
options
分享的选项对象;
参数值是 ShareOptions对象
返回值
返回一个Promise,resolve兑现一个ShareResult对象
示例
import { sharePlugin } from "@plaoc/plugins";
;(async() => {
const b = await sharePlugin.canShare()
if(!b)return;
const res = await sharePlugin.show({
title: "标题",
text: "文本内容"
})
})();
平台兼容性
属性/方法/事件 | Android | IOS | Desktop-Dev | Desktop |
---|---|---|---|---|
share | ✅ | ✅ | ✅ | X |
相关链接
Powered by Waline v2.15.7