miniapp-web-jsapi
Version:
JSAPI/View adapter for miniprogram running on the web
9 lines • 323 B
JavaScript
export function startApp(options) {
var success = options.success,
fail = options.fail,
complete = options.complete,
scheme = options.scheme;
window.location.href = scheme;
success === null || success === void 0 ? void 0 : success({});
complete === null || complete === void 0 ? void 0 : complete({});
}