uniapp web-view H5 打不打开 https://u.jd.com/XsOp6y4 显示空白
代码如下
<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(option) {
this.url = decodeURIComponent(option.url);
},
methods: {
}
}
</script>
<style>
</style>
0 个回复