2025-11-28 22:18:23 +08:00

25 lines
335 B
Vue

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