shuishen
2025-09-28 b4e7fc334e6b1e1844a812ebf6b3924f70dc1b9e
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <web-view class="h-full" :src="url" />
</template>
 
<script setup>
const url = ref("")
 
onLoad(options => {
  if (options.url) url.value = decodeURIComponent(options.url)
})
 
</script>