export default function ({ $userAgent }, i) { const before = () => { if ($userAgent.isApp) { return; } throw new Error('非App环境'); }; i('native', { share({ title, content, gotoUrl, shareImg }) { before(); if ($userAgent.isIos) { window.webkit.messageHandlers.share.postMessage({ title, content, gotoUrl, shareImg, }); } else { window.native.share(title, content, gotoUrl, shareImg); } }, }); }