kaiguan-zfb/page_fenbao/webview.vue

22 lines
288 B
Vue
Raw Normal View History

2024-06-05 18:08:20 +08:00
<template>
<view class="">
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(item) {
this.url = decodeURIComponent(item.url)
console.log(this.url)
}
}
</script>
<style lang="scss">
</style>