<template>
<view>
<web-view src="{{url}}"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url:""
}
},
methods: {
}
}
</script>
<style>
</style>
<template>
<view>
<web-view src="{{url}}"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url:""
}
},
methods: {
}
}
</script>
<style>
</style>
nick_sh
在onLoad里实现绑定src的值,但是没有响应!
onLoad(option) {
console.log(option)
this.wvSrc = decodeURIComponent(option.url)
2020-02-28 11:11