0.2.8 • Published 9 months ago
@seayoo-web/combo-webview v0.2.8
Combo Webview
combo 内置 webview 和 combo 进行通信的工具库, 提供集成后的 API 方便前端开发调用.
方法列表
close() 关闭网页
openInBrowser(url) 在外部浏览器中打开 url
listCmd() 可执行的命令列表
exeCmd(cmd, options) 执行命令
示例
import {close, exeCmd, openInBrowser} from '@seayoo-web/combo-webview';
close();
await exeCmd('openInbrowser', {url: 'https://www.baidu.com'});
await openInBrowser('https://www.baidu.com');
const resp = await exeCmd('list', null);