在非微信里面使用web-component定义wx-open-launch-weapp方便调试样式
(function(){
var userAgent = navigator.userAgent && navigator.userAgent.toLowerCase() || '';
if (userAgent.match(/MicroMessenger/i) != "micromessenger") {
class WxOpenLaunchWeapp extends HTMLElement
{
constructor()
{
super();
this.shadow = this.attachShadow({ mode: 'open' });
}
connectedCallback() {
var template = this.querySelector("script,template");
if (template) {
this.shadow.innerHTML = template.innerHTML;
this.removeChild(template);
}
}
}
window.customElements.define('wx-open-launch-weapp', WxOpenLaunchWeapp);
}
})();