在打包的APP中发现webview打开显示空白
最后发现是高度问题
最后给style设置动态高度:
<web-view ref="webview" :style="viewStyle" allow :fullscreen="true" :webview-styles="webviewStyles" :src="UrlLink" @onPostMessage="handleMessage" @message="handleMessage"></web-view>
onReady() {let _this = this;// #ifdef APP-PLUS || MP-WEIXINuni.getSystemInfo({success: function (res) {_this.viewStyle.height = res.windowHeight;}});// #endif// #ifdef H5this.viewStyle.height = window.screen.height - 44 + "px";// #endif
}