<template>
<view>
<web-view :webview-styles="webviewStyles" :src="decodedUrl" bindload="onWebViewLoad">
</web-view>
</view>
</template>
<script>
onLoad: function onLoad(option) {
this.decodedUrl = decodeURIComponent(option.url);
},
methods: {
onWebViewLoad: function onWebViewLoad() {
console.log('--------------');
}
}
</script>
网页加载成功才触发,可能你的网页因为报错或者什么js导致 并未加载完毕,看看加载进度条到头了么