Files
2025-04-30 14:04:34 +08:00

21 lines
232 B
Vue

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