case-data/pages/web/web.vue
zoujiandong b0f1a37ece 111
2025-07-15 17:48:57 +08:00

17 lines
251 B
Vue

<template>
<web-view :src="src"></web-view>
</template>
<script setup>
import { ref } from 'vue';
import { onLoad } from "@dcloudio/uni-app";
const src=ref('')
onLoad((option)=>{
src.value=option.src
})
</script>
<style scoped>
</style>