2025-05-08 10:34:01 +08:00

25 lines
273 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url:""
}
},
methods: {
},
onLoad(options) {
this.url = decodeURIComponent(options.url || '')
}
}
</script>
<style>
</style>